artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
579e3f2
)
Use %zu for size_t arguments
author
guenther
<guenther@openbsd.org>
Sat, 27 Aug 2016 01:30:39 +0000
(
01:30
+0000)
committer
guenther
<guenther@openbsd.org>
Sat, 27 Aug 2016 01:30:39 +0000
(
01:30
+0000)
usr.sbin/sasyncd/timer.c
patch
|
blob
|
history
diff --git
a/usr.sbin/sasyncd/timer.c
b/usr.sbin/sasyncd/timer.c
index
d31a7a1
..
798718d
100644
(file)
--- a/
usr.sbin/sasyncd/timer.c
+++ b/
usr.sbin/sasyncd/timer.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: timer.c,v 1.
5 2015/08/20 22:39:29 deraadt Exp $
*/
+/* $OpenBSD: timer.c,v 1.
6 2016/08/27 01:30:39 guenther Exp $
*/
/*
* Copyright (c) 2005 HÃ¥kan Olsson. All rights reserved.
@@
-115,7
+115,7
@@
timer_add(char *name, u_int32_t when, void (*function)(void *), void *arg)
new = calloc(1, sizeof *new);
if (!new) {
- log_err("timer_add: calloc (1, %u) failed", sizeof *new);
+ log_err("timer_add: calloc (1, %
z
u) failed", sizeof *new);
return -1;
}