diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-21 08:32:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-21 08:32:12 +0000 |
commit | 2957fc699207d8e855c7024f8f91c451cf018952 (patch) | |
tree | ce3a887e3f426a23735a211a5a6aa26415fe422e /coreutils/basename.c | |
parent | 6857e4e2f3ed59df9fe0d5ccbc518d126dd89dbc (diff) | |
download | busybox-w32-1_11_2.tar.gz busybox-w32-1_11_2.tar.bz2 busybox-w32-1_11_2.zip |
apply post-1.11.1 patches, bump version to 1.11.21_11_2
Diffstat (limited to 'coreutils/basename.c')
-rw-r--r-- | coreutils/basename.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/basename.c b/coreutils/basename.c index a3085ede3..8a05e92e5 100644 --- a/coreutils/basename.c +++ b/coreutils/basename.c | |||
@@ -48,5 +48,5 @@ int basename_main(int argc, char **argv) | |||
48 | 48 | ||
49 | /* puts(s) will do, but we can do without stdio this way: */ | 49 | /* puts(s) will do, but we can do without stdio this way: */ |
50 | s[m++] = '\n'; | 50 | s[m++] = '\n'; |
51 | return full_write(STDOUT_FILENO, s, m) == (ssize_t)m; | 51 | return full_write(STDOUT_FILENO, s, m) != (ssize_t)m; |
52 | } | 52 | } |