projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e4c931
)
* gdbtypes.c (get_discrete_bounds): Fix typo.
author
Per Bothner
<per@bothner.com>
Fri, 20 Oct 1995 02:05:29 +0000
(
02:05
+0000)
committer
Per Bothner
<per@bothner.com>
Fri, 20 Oct 1995 02:05:29 +0000
(
02:05
+0000)
gdb/gdbtypes.c
patch
|
blob
|
history
diff --git
a/gdb/gdbtypes.c
b/gdb/gdbtypes.c
index 2a177648fcb30c4524b297b5b13c0b7524d9ba83..f60232362cd51598fbac170c430fce3a4c653c58 100644
(file)
--- 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;