* gdbtypes.c (get_discrete_bounds): Fix typo.

This commit is contained in:
Per Bothner 1995-10-20 02:05:29 +00:00
parent 9e4c931641
commit 4dda8ef3ff
1 changed files with 1 additions and 1 deletions

View 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;