diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-02-09 03:49:16 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-02-09 03:49:16 +0000 |
commit | b8454476136d24180d40b2131db892c1e2b51328 (patch) | |
tree | 6f7bbaf5b7930a6457d20a2e5600919246d745c0 /usr.bin/cvs/file.h | |
parent | 3dd8993c39f938c0bd43a26121ba69f61e531868 (diff) |
remove the cvs_file_classify() `loud' argument, it was used
in the old school days and serves no purpose what so ever now.
otto@ mentioned this to me a while ago
Diffstat (limited to 'usr.bin/cvs/file.h')
-rw-r--r-- | usr.bin/cvs/file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/file.h b/usr.bin/cvs/file.h index c3c037fa54b..14c172ef732 100644 --- a/usr.bin/cvs/file.h +++ b/usr.bin/cvs/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.40 2007/01/10 21:32:19 xsa Exp $ */ +/* $OpenBSD: file.h,v 1.41 2007/02/09 03:49:15 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -94,7 +94,7 @@ TAILQ_HEAD(ignore_head, cvs_ignpat); void cvs_file_init(void); void cvs_file_ignore(const char *, struct ignore_head *); -void cvs_file_classify(struct cvs_file *, const char *, int); +void cvs_file_classify(struct cvs_file *, const char *); void cvs_file_free(struct cvs_file *); void cvs_file_run(int, char **, struct cvs_recursion *); void cvs_file_walklist(struct cvs_flisthead *, struct cvs_recursion *); |