diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-12 14:14:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-12 14:14:45 +0200 |
commit | 7783248eaac715b813f0635b06cc140ea99bb4d9 (patch) | |
tree | b7c3acbdf7e45afdb31a721a693f0a8a65f80730 /printutils/lpd.c | |
parent | 7bfbbd434a6f435b0287cd25406927c630b03f68 (diff) | |
download | busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.tar.gz busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.tar.bz2 busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.zip |
*: s/xatoi_u/xatoi_positive/g - I got bored of mistyping xatoi_u as xatou_i
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'printutils/lpd.c')
-rw-r--r-- | printutils/lpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/printutils/lpd.c b/printutils/lpd.c index d91491f1b..54ff2227e 100644 --- a/printutils/lpd.c +++ b/printutils/lpd.c | |||
@@ -135,7 +135,7 @@ int lpd_main(int argc UNUSED_PARAM, char *argv[]) | |||
135 | while (1) { | 135 | while (1) { |
136 | char *fname; | 136 | char *fname; |
137 | int fd; | 137 | int fd; |
138 | // int is easier than ssize_t: can use xatoi_u, | 138 | // int is easier than ssize_t: can use xatoi_positive, |
139 | // and can correctly display error returns (-1) | 139 | // and can correctly display error returns (-1) |
140 | int expected_len, real_len; | 140 | int expected_len, real_len; |
141 | 141 | ||