mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Bug 502301 - Fix binhex_decode array signedness which broke builds on architectures where char is unsigned [r=benjamin]
This was detected by the C++0x narrowing conversion inside {} compilation errors.
This commit is contained in:
parent
c66b15e601
commit
46db370e20
@ -98,7 +98,7 @@ NS_INTERFACE_MAP_END
|
||||
|
||||
// The binhex 4.0 decoder table....
|
||||
|
||||
static char binhex_decode[256] =
|
||||
static signed char binhex_decode[256] =
|
||||
{
|
||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||
|
Loading…
Reference in New Issue
Block a user