commit | 6c10657c4a4cb54ed65d797250b9a73b565c10d6 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sat Apr 19 19:05:12 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sat Apr 19 19:05:12 2008 +0000 |
tree | 1adfeaef74f1e10be116d8d3bb5d8b6a0908fbf7 | |
parent | 5a96c3eab63c2e3349d8bc4be471b3a730fd109b [diff] [blame] |
style fixes. no code changes
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 5298ee5..915b74d 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c
@@ -172,7 +172,7 @@ /* Convert signed integer to ascii, like utoa_to_buf() */ char *itoa_to_buf(int n, char *buf, unsigned buflen) { - if (buflen && n<0) { + if (buflen && n < 0) { n = -n; *buf++ = '-'; buflen--;