aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.c
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1995-10-20 02:05:29 +0000
committerPer Bothner <per@bothner.com>1995-10-20 02:05:29 +0000
commit4dda8ef3ff068676c76301ddac01ed6c4d01ddc5 (patch)
tree09300c97e58b70add74e9f664b1da40e8dcaf0d2 /gdb/gdbtypes.c
parent9e4c931641a73ce95ed1f4295c7f022f74a8047a (diff)
downloadgdb-4dda8ef3ff068676c76301ddac01ed6c4d01ddc5.zip
gdb-4dda8ef3ff068676c76301ddac01ed6c4d01ddc5.tar.gz
gdb-4dda8ef3ff068676c76301ddac01ed6c4d01ddc5.tar.bz2
* gdbtypes.c (get_discrete_bounds): Fix typo.
Diffstat (limited to 'gdb/gdbtypes.c')
-rw-r--r--gdb/gdbtypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index 2a17764..f602323 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;