aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dos2unix.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 13:19:57 +1000
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 13:19:57 +1000
commitec71cb6575290eb6ad716e4f620db445d8e1bcd3 (patch)
tree219a5dba000e0ad98ff563bc6f7d45d274d3a178 /coreutils/dos2unix.c
parentb5139d7cd8982d9b683cb1babf0bd759076aaab0 (diff)
parent6814cbc9288601840aedb372e2bd84dab76ffa43 (diff)
downloadbusybox-w32-ec71cb6575290eb6ad716e4f620db445d8e1bcd3.tar.gz
busybox-w32-ec71cb6575290eb6ad716e4f620db445d8e1bcd3.tar.bz2
busybox-w32-ec71cb6575290eb6ad716e4f620db445d8e1bcd3.zip
Merge branch 'origin/master' (early part)
Diffstat (limited to 'coreutils/dos2unix.c')
-rw-r--r--coreutils/dos2unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c
index 1c8b4af1b..98eaec172 100644
--- a/coreutils/dos2unix.c
+++ b/coreutils/dos2unix.c
@@ -94,7 +94,7 @@ int dos2unix_main(int argc UNUSED_PARAM, char **argv)
94 do { 94 do {
95 /* might be convert(NULL) if there is no filename given */ 95 /* might be convert(NULL) if there is no filename given */
96 convert(*argv, conv_type); 96 convert(*argv, conv_type);
97 } while (*++argv); 97 } while (*argv && *++argv);
98 98
99 return 0; 99 return 0;
100} 100}