Fixed building on ppc.

This commit is contained in:
Valentin Bartenev
2017-08-15 16:36:00 +03:00
parent e2653f7ba5
commit 2614758c04

View File

@@ -1892,7 +1892,7 @@ nxt_conf_json_integer_length(nxt_conf_value_t *value)
return sizeof("-9999") - 1; return sizeof("-9999") - 1;
} }
if (num <= 99999999999) { if (num <= 99999999999LL) {
return sizeof("-99999999999") - 1; return sizeof("-99999999999") - 1;
} }