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/str.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/str.c')
-rw-r--r-- | usr.bin/make/str.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.bin/make/str.c b/usr.bin/make/str.c index 0475759..8ff10df 100644 --- a/usr.bin/make/str.c +++ b/usr.bin/make/str.c @@ -241,8 +241,12 @@ brk_string(str, store_argc, expand) case 't': ch = '\t'; break; + default: + break; } break; + default: + break; } if (!start) start = t; |