diff options
author | 2007-02-09 03:49:15 +0000 | |
---|---|---|
committer | 2007-02-09 03:49:15 +0000 | |
commit | 34911d69726ea14efa5ce4b8da548261e59ce801 (patch) | |
tree | ea2790e5519d291883db64c068fe15c123530079 /usr.bin/cvs/annotate.c | |
parent | strtol(3) -> strtonum(3) (diff) | |
download | wireguard-openbsd-34911d69726ea14efa5ce4b8da548261e59ce801.tar.xz wireguard-openbsd-34911d69726ea14efa5ce4b8da548261e59ce801.zip |
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/annotate.c')
-rw-r--r-- | usr.bin/cvs/annotate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/annotate.c b/usr.bin/cvs/annotate.c index 8f719dcae6e..403df550ff7 100644 --- a/usr.bin/cvs/annotate.c +++ b/usr.bin/cvs/annotate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: annotate.c,v 1.35 2007/01/13 20:59:49 joris Exp $ */ +/* $OpenBSD: annotate.c,v 1.36 2007/02/09 03:49:15 joris Exp $ */ /* * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> * @@ -109,7 +109,7 @@ cvs_annotate_local(struct cvs_file *cf) { cvs_log(LP_TRACE, "cvs_annotate_local(%s)", cf->file_path); - cvs_file_classify(cf, NULL, 0); + cvs_file_classify(cf, NULL); if (cf->file_status == FILE_UNKNOWN || cf->file_status == FILE_UNLINK) |