Index: generic/nsfUtil.c =================================================================== diff -u -r17ba2f1d86be4afd497d652b7ee39a5edc771a22 -rab5097b110d11556bd7b32faace2fd6cae23b6e5 --- generic/nsfUtil.c (.../nsfUtil.c) (revision 17ba2f1d86be4afd497d652b7ee39a5edc771a22) +++ generic/nsfUtil.c (.../nsfUtil.c) (revision ab5097b110d11556bd7b32faace2fd6cae23b6e5) @@ -58,7 +58,7 @@ * Nsf_ltoa -- * * Convert a long value into a string; this function is a fast - * version of sprintf(buf,"%ld",l); + * version of sprintf(buf, "%ld", l); * * Results: * String containing decimal value of the provided parameter. @@ -69,7 +69,7 @@ *---------------------------------------------------------------------- */ char * -Nsf_ltoa(char *buf, long i, int *len) /* fast version of sprintf(buf,"%ld",l); */ { +Nsf_ltoa(char *buf, long i, int *len) { int nr_written, negative; char tmp[LONG_AS_STRING], *pointer = &tmp[1], *string, *p; *tmp = 0;