1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +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:
Alexander Bokovoy -
parent 3c2ce3456a
commit e4dda8cb22

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