diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-01 20:20:37 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-01 20:20:37 +0000 |
commit | f125f45d04958a3f5eeec5380fa06842a64e9078 (patch) | |
tree | 26f8642cd9e8cc1c2ca0b75a6b20801863b4e2cf /util-linux/hwclock.c | |
parent | f0b3fc041f40e2185a14c3b5ff778444c2b98c81 (diff) | |
download | busybox-w32-f125f45d04958a3f5eeec5380fa06842a64e9078.tar.gz busybox-w32-f125f45d04958a3f5eeec5380fa06842a64e9078.tar.bz2 busybox-w32-f125f45d04958a3f5eeec5380fa06842a64e9078.zip |
Unneeded code removed, usused field "unsigned pscpu" removed
git-svn-id: svn://busybox.net/trunk/busybox@16488 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | util-linux/hwclock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c index 3a087725e..8fcd8c99c 100644 --- a/util-linux/hwclock.c +++ b/util-linux/hwclock.c | |||
@@ -106,7 +106,7 @@ static int show_clock(int utc) | |||
106 | if (buffer[0]) | 106 | if (buffer[0]) |
107 | buffer[strlen(buffer) - 1] = 0; | 107 | buffer[strlen(buffer) - 1] = 0; |
108 | 108 | ||
109 | //printf("%s %.6f seconds %s\n", buffer, 0.0, utc ? "" : (ptm->tm_isdst ? tzname [1] : tzname [0])); | 109 | //printf("%s %.6f seconds %s\n", buffer, 0.0, utc ? "" : (ptm->tm_isdst ? tzname[1] : tzname[0])); |
110 | printf( "%s %.6f seconds\n", buffer, 0.0); | 110 | printf( "%s %.6f seconds\n", buffer, 0.0); |
111 | RELEASE_CONFIG_BUFFER(buffer); | 111 | RELEASE_CONFIG_BUFFER(buffer); |
112 | 112 | ||