1
0
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:
Alexander Bokovoy 2003-09-17 17:49:35 +00:00
parent 3612592f5d
commit 5715e01481

View File

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