pike.git
/
src
/
modules
/
_Roxen
/
roxen.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/_Roxen/roxen.c:483:
Pike_error("Wrong number of arguments to html_encode_string\n" ); switch( Pike_sp[-1].type ) { void o_cast_to_string(); case PIKE_T_INT: /* Optimization, this is basically a inlined cast_int_to_string */ { char buf[21], *b = buf+19;
-
int neg,
i,
j=0;
-
i = Pike_sp[-1].u.integer;
+
int neg, j=0;
+
INT_TYPE
i = Pike_sp[-1].u.integer;
pop_stack(); if( i < 0 ) { neg = 1; i = -i; } else neg = 0; buf[20] = 0;