diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index 2a177648fcb..f60232362cd 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -347,7 +347,7 @@ get_discrete_bounds (type, lowp, highp) { switch (TYPE_CODE (type)) { - TYPE_CODE_RANGE: + case TYPE_CODE_RANGE: *lowp = TYPE_LOW_BOUND (type); *highp = TYPE_HIGH_BOUND (type); return 1;