mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
Fix scripts to generate correct tables for compilers which have character constants as signed chars instead of unsigned
(This used to be commit e4dda8cb22
)
This commit is contained in:
parent
3612592f5d
commit
5715e01481
@ -23,9 +23,9 @@ function tonum(str)
|
||||
function fmt(val)
|
||||
{
|
||||
if (f++ % 8 == 0)
|
||||
{ printf ("\n '\\x%02x',", val); }
|
||||
{ printf ("\n 0x%02x,", val); }
|
||||
else
|
||||
{ printf (" '\\x%02x',", val); }
|
||||
{ printf (" 0x%02x,", val); }
|
||||
}
|
||||
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user