diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
commit | bf0a201008671f81c107de72c026b1b84967561d (patch) | |
tree | af74820b70fa27929fe218c95822c20651b60637 /coreutils/od_bloaty.c | |
parent | 5dd7ef0f37373e397a7160cb431a32ae57f9f7d9 (diff) |
style fixes
last xcalloc replaced by xzalloc
Diffstat (limited to 'coreutils/od_bloaty.c')
-rw-r--r-- | coreutils/od_bloaty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index bd9f92536..6ae0e046b 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c @@ -490,7 +490,7 @@ print_ascii(size_t n_bytes, const char *block, static void open_next_file(void) { - while(1) { + while (1) { input_filename = *file_list; if (!input_filename) return; |