Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-04-23 05:42:03 +0400
committerMike Frysinger <vapier@gentoo.org>2005-04-23 05:42:03 +0400
commit5b2e27137d3468afb29df719e4b7d1e4da05cd48 (patch)
treebb812b3c14578db44c16f30ef37d2d00ba3d63f0 /coreutils/who.c
parent5cfa5ef6f358bb979b76f8927899b920074f698d (diff)
cast the time pointer so gcc stops warning over nothing
Diffstat (limited to 'coreutils/who.c')
-rw-r--r--coreutils/who.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/who.c b/coreutils/who.c
index 9561db132..0531326bd 100644
--- a/coreutils/who.c
+++ b/coreutils/who.c
@@ -74,7 +74,7 @@ extern int who_main(int argc, char **argv)
} else
printf("%-8s ", "?");
- printf("%-12.12s %s\n", ctime(&(ut->ut_tv.tv_sec)) + 4, ut->ut_host);
+ printf("%-12.12s %s\n", ctime((time_t*)&(ut->ut_tv.tv_sec)) + 4, ut->ut_host);
}
}
endutent();