1
0
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:
Alexander Bokovoy 0001-01-01 00:00:00 +00:00
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); }
}
{