From: Jim Meyering Date: Mon, 28 Mar 2005 18:15:16 +0000 (+0000) Subject: (print_uptime): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1179 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79c88de2ccbd89e9c97cdac84c53d36761d1a0c2;p=thirdparty%2Fcoreutils.git (print_uptime): Use NULL, not `0'. --- diff --git a/src/uptime.c b/src/uptime.c index 9516f0f20d..35fc5b79df 100644 --- a/src/uptime.c +++ b/src/uptime.c @@ -1,5 +1,5 @@ /* GNU's uptime. - Copyright (C) 1992-2002, 2004 Free Software Foundation, Inc. + Copyright (C) 1992-2002, 2004, 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 @@ -100,7 +100,7 @@ print_uptime (size_t n, const STRUCT_UTMP *this) boot_time = UT_TIME_MEMBER (this); ++this; } - time_now = time (0); + time_now = time (NULL); #if defined HAVE_PROC_UPTIME if (uptime == 0) #endif