* gdbtypes.c (get_discrete_bounds): Fix typo.
authorPer Bothner <per@bothner.com>
Fri, 20 Oct 1995 02:05:29 +0000 (02:05 +0000)
committerPer Bothner <per@bothner.com>
Fri, 20 Oct 1995 02:05:29 +0000 (02:05 +0000)
gdb/gdbtypes.c

index 2a177648fcb30c4524b297b5b13c0b7524d9ba83..f60232362cd51598fbac170c430fce3a4c653c58 100644 (file)
@@ -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;
This page took 0.026741 seconds and 4 git commands to generate.