You've already forked linux-packaging-mono
Imported Upstream version 5.16.0.120
Former-commit-id: 6250064a3968ba74ba067335b3fbb09c32d00975
This commit is contained in:
parent
71bd4a382b
commit
f8f43c9aed
@@ -724,9 +724,9 @@ decode (char p)
|
||||
if (p >= '0' && p <= '9')
|
||||
return p - '0';
|
||||
if (p >= 'A' && p <= 'F')
|
||||
return p - 'A';
|
||||
return (p - 'A') + 10;
|
||||
if (p >= 'a' && p <= 'f')
|
||||
return p - 'a';
|
||||
return (p - 'a') + 10;
|
||||
g_assert_not_reached ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user