summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-07-02 18:37:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-07-02 18:37:12 +0000
commitb71bf05ef46ec33b4ed87072f18bf3abad306624 (patch)
treeaae4696efa94053a4f107dc6445fde672ebba308
parent2456a5d3bb3d74c293fa7744b5147152e8bb8249 (diff)
ambigious else
-rw-r--r--usr.bin/ctags/ctags.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ctags/ctags.c b/usr.bin/ctags/ctags.c
index aa4aa1c6268..0e4fc08a198 100644
--- a/usr.bin/ctags/ctags.c
+++ b/usr.bin/ctags/ctags.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ctags.c,v 1.3 1997/01/15 23:42:23 millert Exp $ */
+/* $OpenBSD: ctags.c,v 1.4 1999/07/02 18:37:11 deraadt Exp $ */
/* $NetBSD: ctags.c,v 1.4 1995/09/02 05:57:23 jtc Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)ctags.c 8.4 (Berkeley) 2/7/95";
#endif
-static char rcsid[] = "$OpenBSD: ctags.c,v 1.3 1997/01/15 23:42:23 millert Exp $";
+static char rcsid[] = "$OpenBSD: ctags.c,v 1.4 1999/07/02 18:37:11 deraadt Exp $";
#endif /* not lint */
#include <err.h>
@@ -154,7 +154,7 @@ usage: (void)fprintf(stderr,
(void)fclose(inf);
}
- if (head)
+ if (head) {
if (xflag)
put_entries(head);
else {
@@ -178,6 +178,7 @@ usage: (void)fprintf(stderr,
system(cmd);
}
}
+ }
exit(exit_val);
}