Imported Upstream version 5.16.0.120

Former-commit-id: 6250064a3968ba74ba067335b3fbb09c32d00975
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-08-25 08:37:00 +00:00
parent 71bd4a382b
commit f8f43c9aed
38 changed files with 33 additions and 33 deletions

View File

@@ -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;
}