From: Jim Meyering Date: Mon, 28 Mar 2005 18:11:18 +0000 (+0000) Subject: (main): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0f4666d0255ec33d17185352ad971e39502a307;p=thirdparty%2Fcoreutils.git (main): Use NULL, not `0'. --- diff --git a/src/tac.c b/src/tac.c index 4f6fb229a1..82274d7153 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)