Skip to content

Commit

Permalink
Unused match case 'B' in orpat.
Browse files Browse the repository at this point in the history
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5161 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
  • Loading branch information
pierreweis committed Oct 7, 2002
1 parent 51eb3ba commit 144780b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion byterun/ints.c
Expand Up @@ -39,7 +39,7 @@ static char * parse_sign_and_base(char * p,
*base = 16; p += 2; break;
case 'o': case 'O':
*base = 8; p += 2; break;
case 'b': case 'B':
case 'b':
*base = 2; p += 2; break;
}
}
Expand Down

0 comments on commit 144780b

Please sign in to comment.