From 79c88de2ccbd89e9c97cdac84c53d36761d1a0c2 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 28 Mar 2005 18:15:16 +0000 Subject: (print_uptime): Use NULL, not `0'. --- src/uptime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/uptime.c') diff --git a/src/uptime.c b/src/uptime.c index 9516f0f20..35fc5b79d 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 -- cgit v1.2.3-54-g00ecf