diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-09-28 20:03:26 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-09-28 20:03:26 +0000 |
commit | 06c333e3a8b54bb86854488afa404dbf6101c5f9 (patch) | |
tree | 32b74a981ed5bde5ddf862500a7e5f0a35e7aed1 /usr.bin/make/targ.c | |
parent | 45000db18319b1400a31665ae7023cc957602b0f (diff) | |
download | FreeBSD-src-06c333e3a8b54bb86854488afa404dbf6101c5f9.zip FreeBSD-src-06c333e3a8b54bb86854488afa404dbf6101c5f9.tar.gz |
Add empty default cases where they should be, remove non-local execution stuff
in compat.c which doesn't even have preprocessor-conditional-hidden support
code, and add a debugging statement where we might end up with a nil list
somehow, but where I doubt it.
First confirmed userland kill for Flexelint.
Sponsored by: Bright Path Solutions
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r-- | usr.bin/make/targ.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index be468bb..e1f68db 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -577,6 +577,8 @@ TargPrintNode (gnp, passp) printf("! "); break; case OP_DOUBLEDEP: printf(":: "); break; + default: + break; } Targ_PrintType (gn->type); Lst_ForEach (gn->children, TargPrintName, (void *)0); |