From: Andreas Jaeger Date: Wed, 17 Jan 2001 10:45:25 +0000 (+0000) Subject: (nscd_run): Use proper format specifier. X-Git-Tag: cvs/glibc-2_2_2~269 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc2cb6f1cec6057945b688eecb69297b5971576e;p=platform%2Fupstream%2Fglibc.git (nscd_run): Use proper format specifier. --- 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; }