[email protected] writes: > From: Sergey Fedorov <[email protected]> > > Signed-off-by: Sergey Fedorov <[email protected]> > > --- > qtest.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/qtest.c b/qtest.c > index 2aba20d..87ccd62 100644 > --- a/qtest.c > +++ b/qtest.c > @@ -148,7 +148,7 @@ static int hex2nib(char ch) > } else if (ch >= 'a' && ch <= 'f') { > return 10 + (ch - 'a'); > } else if (ch >= 'A' && ch <= 'F') { > - return 10 + (ch - 'a'); > + return 10 + (ch - 'A'); > } else { > return -1; > }
Awesome testing on the original author's part %-} Reviewed-by: Markus Armbruster <[email protected]>
