Module Name: src
Committed By: msaitoh
Date: Wed Nov 5 09:59:25 UTC 2014
Modified Files:
src/usr.sbin/ypbind [netbsd-5]: ypbind.c
Log Message:
Fix compile error (s/__printf/__printf__/).
To generate a diff of this commit:
cvs rdiff -u -r1.57.18.2 -r1.57.18.3 src/usr.sbin/ypbind/ypbind.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/ypbind/ypbind.c
diff -u src/usr.sbin/ypbind/ypbind.c:1.57.18.2 src/usr.sbin/ypbind/ypbind.c:1.57.18.3
--- src/usr.sbin/ypbind/ypbind.c:1.57.18.2 Mon Nov 3 18:48:42 2014
+++ src/usr.sbin/ypbind/ypbind.c Wed Nov 5 09:59:25 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: ypbind.c,v 1.57.18.2 2014/11/03 18:48:42 msaitoh Exp $ */
+/* $NetBSD: ypbind.c,v 1.57.18.3 2014/11/05 09:59:25 msaitoh Exp $ */
/*
* Copyright (c) 1992, 1993 Theo de Raadt <[email protected]>
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef LINT
-__RCSID("$NetBSD: ypbind.c,v 1.57.18.2 2014/11/03 18:48:42 msaitoh Exp $");
+__RCSID("$NetBSD: ypbind.c,v 1.57.18.3 2014/11/05 09:59:25 msaitoh Exp $");
#endif
#include <sys/types.h>
@@ -202,7 +202,7 @@ static int debug;
#define DPRINTF(...)
#endif
-static void yp_log(int, const char *, ...) __attribute__((__format__(__printf, 2, 3)));
+static void yp_log(int, const char *, ...) __attribute__((__format__(__printf__, 2, 3)));
/*
* Log some stuff, to syslog or stderr depending on the debug setting.