mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Fix scripts to generate correct tables for compilers which have character constants as signed chars instead of unsigned
This commit is contained in:
parent
3c2ce3456a
commit
e4dda8cb22
@ -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