From: Per Bothner Date: Fri, 20 Oct 1995 02:05:29 +0000 (+0000) Subject: * gdbtypes.c (get_discrete_bounds): Fix typo. X-Git-Tag: gdb-4_18-branchpoint~10467 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4dda8ef3ff068676c76301ddac01ed6c4d01ddc5;p=thirdparty%2Fbinutils-gdb.git * gdbtypes.c (get_discrete_bounds): Fix typo. --- 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;