projects
/
libsigrokdecode.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d652ef8
)
type_decoder.c: Fix a compiler warning (-Wswitch-default).
author
Uwe Hermann
<uwe@hermann-uwe.de>
Thu, 17 May 2018 21:25:42 +0000
(23:25 +0200)
committer
Uwe Hermann
<uwe@hermann-uwe.de>
Thu, 17 May 2018 21:25:42 +0000
(23:25 +0200)
type_decoder.c: In function ‘get_term_type’:
type_decoder.c:486:2: warning: switch missing default case [-Wswitch-default]
switch (v[0]) {
^~~~~~
type_decoder.c
patch
|
blob
|
history
diff --git
a/type_decoder.c
b/type_decoder.c
index 9e0a27cf7738622aada2813e5ddfaa1457870d3d..e69b3c4e0b11e32f870bf35861a2a0368e09c430 100644
(file)
--- a/
type_decoder.c
+++ b/
type_decoder.c
@@
-496,6
+496,8
@@
static int get_term_type(const char *v)
return SRD_TERM_EITHER_EDGE;
case 'n':
return SRD_TERM_NO_EDGE;
+ default:
+ return -1;
}
return -1;