diff options
author | 2004-12-06 03:13:52 +0000 | |
---|---|---|
committer | 2004-12-06 03:13:52 +0000 | |
commit | 24d6e202c5394f964bc255f2ec8c92dd5de77edd (patch) | |
tree | c21184bcf0f5e3ea8f81829ef678741d42e35634 | |
parent | Missing prototype for cvs_diff_sendflags(), removes a gcc warning (diff) | |
download | wireguard-openbsd-24d6e202c5394f964bc255f2ec8c92dd5de77edd.tar.xz wireguard-openbsd-24d6e202c5394f964bc255f2ec8c92dd5de77edd.zip |
Get rid of a gcc warning
-rw-r--r-- | usr.bin/cvs/getlog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index 662755e5472..02f3261ef94 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.7 2004/11/26 16:23:50 jfb Exp $ */ +/* $OpenBSD: getlog.c,v 1.8 2004/12/06 03:13:52 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -48,7 +48,9 @@ #define CVS_GETLOG_REVEND \ "=============================================================================" +#ifdef notyet static void cvs_getlog_print (const char *, RCSFILE *, u_int); +#endif static int cvs_getlog_file (CVSFILE *, void *); |