projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46c7d9e
)
microcode/debug.c: Avoid compiler warning; init in default case.
author
Matt Birkholz
<matt@birchwood-abbey.net>
Tue, 19 Sep 2017 23:56:37 +0000
(16:56 -0700)
committer
Matt Birkholz
<matt@birchwood-abbey.net>
Tue, 19 Sep 2017 23:56:37 +0000
(16:56 -0700)
src/microcode/debug.c
patch
|
blob
|
history
diff --git
a/src/microcode/debug.c
b/src/microcode/debug.c
index 26fe18fce745ac86197cbd4e94aec35676825fa3..99467c64e0aae92b9f7445dc118706b7e9cc724a 100644
(file)
--- a/
src/microcode/debug.c
+++ b/
src/microcode/debug.c
@@
-284,6
+284,8
@@
print_ustring (outf_channel stream, SCHEME_OBJECT string)
cp |= (*next++ << 8);
cp |= (*next++ << 16);
break;
+ default:
+ cp = 0;
}
print_char (stream, cp);
}