summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-28 18:11:18 +0000
committerJim Meyering <jim@meyering.net>2005-03-28 18:11:18 +0000
commitb0f4666d0255ec33d17185352ad971e39502a307 (patch)
treeadfb3d469f0f35ec5ed50a4a4cd161eb5edd1720 /src
parent77c6ac360f94f01b8674632cd44434b4c8c3bea8 (diff)
downloadcoreutils-b0f4666d0255ec33d17185352ad971e39502a307.tar.xz
(main): Use NULL, not `0'.
Diffstat (limited to 'src')
-rw-r--r--src/tac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tac.c b/src/tac.c
index 4f6fb229a..82274d715 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -1,5 +1,5 @@
/* tac - concatenate and print files in reverse
- Copyright (C) 1988-1991, 1995-2004 Free Software Foundation, Inc.
+ Copyright (C) 1988-1991, 1995-2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -705,7 +705,7 @@ main (int argc, char **argv)
compiled_separator.allocated = 100;
compiled_separator.buffer = xmalloc (compiled_separator.allocated);
compiled_separator.fastmap = xmalloc (256);
- compiled_separator.translate = 0;
+ compiled_separator.translate = NULL;
error_message = re_compile_pattern (separator, strlen (separator),
&compiled_separator);
if (error_message)