diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2007-11-06 10:22:30 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2007-11-06 10:22:30 +0000 |
commit | ffa0ca8c090934f01ce0b62dbd1d818745a739aa (patch) | |
tree | d3605227e20cc1c217e4e7cbb65744fae463aa7b /games/hunt/huntd | |
parent | a14390fe9e9ae5805f69dc9a0d6c2455744d8234 (diff) |
fix format string
ok ray@ gilles@
Diffstat (limited to 'games/hunt/huntd')
-rw-r--r-- | games/hunt/huntd/answer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/hunt/huntd/answer.c b/games/hunt/huntd/answer.c index ef959ba0c68..a0e98bb210d 100644 --- a/games/hunt/huntd/answer.c +++ b/games/hunt/huntd/answer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: answer.c,v 1.10 2004/01/16 00:13:19 espie Exp $ */ +/* $OpenBSD: answer.c,v 1.11 2007/11/06 10:22:29 chl Exp $ */ /* $NetBSD: answer.c,v 1.3 1997/10/10 16:32:50 lukem Exp $ */ /* * Copyright (c) 1983-2003, Regents of the University of California. @@ -103,7 +103,7 @@ answer_first() /* Warn if we lose connection info: */ if (socklen > sizeof Spawn->source) logx(LOG_WARNING, - "struct sockaddr is not big enough! (%d > %d)", + "struct sockaddr is not big enough! (%d > %zu)", socklen, sizeof Spawn->source); /* |