artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37ec931
)
Be sure to print time_t with the appropriate format specifier. Repairs
author
miod
<miod@openbsd.org>
Thu, 15 Jan 2015 20:48:51 +0000
(20:48 +0000)
committer
miod
<miod@openbsd.org>
Thu, 15 Jan 2015 20:48:51 +0000
(20:48 +0000)
dump of eeprom variables on sun4.
usr.sbin/eeprom/eehandlers.c
patch
|
blob
|
history
diff --git
a/usr.sbin/eeprom/eehandlers.c
b/usr.sbin/eeprom/eehandlers.c
index
1ebb8d1
..
75aac56
100644
(file)
--- a/
usr.sbin/eeprom/eehandlers.c
+++ b/
usr.sbin/eeprom/eehandlers.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: eehandlers.c,v 1.
19 2014/11/18 20:54:28 krw Exp $
*/
+/* $OpenBSD: eehandlers.c,v 1.
20 2015/01/15 20:48:51 miod Exp $
*/
/* $NetBSD: eehandlers.c,v 1.2 1996/02/28 01:13:22 thorpej Exp $ */
/*-
@@
-110,7
+110,7
@@
ee_hwupdate(struct keytabent *ktent, char *arg)
if ((cp2 = strrchr(cp, '\n')) != NULL)
*cp2 = '\0';
- printf("%s=%
d (%s)\n", ktent->kt_keyword,
t, cp);
+ printf("%s=%
lld (%s)\n", ktent->kt_keyword, (long long)
t, cp);
}
#endif