summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-08-23 15:03:48 +0000
committerJim Meyering <jim@meyering.net>2005-08-23 15:03:48 +0000
commit68c6c7db8e0853226db08c11466705c2866eadbe (patch)
treea6e737cb51d5f81d6aa95fff71a4fa34e21e9f99 /src
parentb5e741091df258fe2487853b047891e11383896d (diff)
downloadcoreutils-68c6c7db8e0853226db08c11466705c2866eadbe.tar.xz
(print_uptime): Remove unnecessary parens in `#if defined (SYMBOL)' expressions.
Diffstat (limited to 'src')
-rw-r--r--src/uptime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uptime.c b/src/uptime.c
index 6718fbdbf..5118956ea 100644
--- a/src/uptime.c
+++ b/src/uptime.c
@@ -132,7 +132,7 @@ print_uptime (size_t n, const STRUCT_UTMP *this)
printf (ngettext ("%lu user", "%lu users", entries),
(unsigned long int) entries);
-#if defined (HAVE_GETLOADAVG) || defined (C_GETLOADAVG)
+#if defined HAVE_GETLOADAVG || defined C_GETLOADAVG
loads = getloadavg (avg, 3);
#else
loads = -1;