summaryrefslogtreecommitdiffstats
path: root/lib/boottime.c
diff options
context:
space:
mode:
authorRuediger Meier2014-05-30 01:18:09 +0200
committerRuediger Meier2014-05-30 01:18:09 +0200
commit60cb2c37201a453a76ea12e4d4b48f7b34ebef2c (patch)
tree85ffda2c6658fb51db06b8363feecd4e39cb3879 /lib/boottime.c
parentlslogins: fix pretty-print columns (diff)
downloadkernel-qcow2-util-linux-60cb2c37201a453a76ea12e4d4b48f7b34ebef2c.tar.gz
kernel-qcow2-util-linux-60cb2c37201a453a76ea12e4d4b48f7b34ebef2c.tar.xz
kernel-qcow2-util-linux-60cb2c37201a453a76ea12e4d4b48f7b34ebef2c.zip
build: fix some compiler warnings
Most of them catched on 32bit gcc and icc. disk-utils/fsck.cramfs.c: printf format type lib/boottime.c: unused variables misc-utils/cal.c: set but never used sys-utils/losetup.c: set but never used sys-utils/lscpu-dmi.c: defined but not used sys-utils/switch_root.c: comparison between signed and unsigned tests/helpers/test_sysinfo.c: printf format type
Diffstat (limited to 'lib/boottime.c')
-rw-r--r--lib/boottime.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/boottime.c b/lib/boottime.c
index 335570cc1..a2869a50b 100644
--- a/lib/boottime.c
+++ b/lib/boottime.c
@@ -9,8 +9,11 @@
int get_boot_time(struct timeval *boot_time)
{
+#ifdef CLOCK_BOOTTIME
struct timespec hires_uptime;
- struct timeval lores_uptime, now;
+ struct timeval lores_uptime;
+#endif
+ struct timeval now;
struct sysinfo info;
if (gettimeofday(&now, NULL) != 0) {