From fc2cb6f1cec6057945b688eecb69297b5971576e Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 17 Jan 2001 10:45:25 +0000 Subject: [PATCH] (nscd_run): Use proper format specifier. --- nscd/connections.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nscd/connections.c b/nscd/connections.c index 7ba36bb..65ce701 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -1,5 +1,5 @@ /* Inner loops of cache daemon. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. @@ -467,7 +467,7 @@ nscd_run (void *p) to 1kb. */ if (req.key_len < 0 || req.key_len > 1024) { - dbg_log (_("key length in request too long: %zd"), req.key_len); + dbg_log (_("key length in request too long: %d"), req.key_len); close (fd); continue; } -- 2.7.4