diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-19 19:05:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-19 19:05:12 +0000 |
commit | 6c10657c4a4cb54ed65d797250b9a73b565c10d6 (patch) | |
tree | 1adfeaef74f1e10be116d8d3bb5d8b6a0908fbf7 /libbb | |
parent | 5a96c3eab63c2e3349d8bc4be471b3a730fd109b (diff) | |
download | busybox-w32-6c10657c4a4cb54ed65d797250b9a73b565c10d6.tar.gz busybox-w32-6c10657c4a4cb54ed65d797250b9a73b565c10d6.tar.bz2 busybox-w32-6c10657c4a4cb54ed65d797250b9a73b565c10d6.zip |
style fixes. no code changes
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/xfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 5298ee539..915b74dd1 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -172,7 +172,7 @@ char *utoa_to_buf(unsigned n, char *buf, unsigned buflen) | |||
172 | /* Convert signed integer to ascii, like utoa_to_buf() */ | 172 | /* Convert signed integer to ascii, like utoa_to_buf() */ |
173 | char *itoa_to_buf(int n, char *buf, unsigned buflen) | 173 | char *itoa_to_buf(int n, char *buf, unsigned buflen) |
174 | { | 174 | { |
175 | if (buflen && n<0) { | 175 | if (buflen && n < 0) { |
176 | n = -n; | 176 | n = -n; |
177 | *buf++ = '-'; | 177 | *buf++ = '-'; |
178 | buflen--; | 178 | buflen--; |