[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#644023: FTBFS on kfreebsd-i386



-  ret = fprintf (fp, "%" SN "d%" SN "d", 1, 1);
+  ret = fprintf (fp, "%" SN "d%" SN "d%" SN "d", 1, 1);

It have to be changed into
     fprintf (fp, "%" SN "d%" SN "d%" SN "d", 1, 1, 1);
or
     fprintf (fp, "%" SN "d%" SN "d%" SN "d", 1, 2, 3);

+  ret = fprintf (fp, "%" SN "d", 1, 1);

And here into
    fprintf (fp, "%" SN "d", 1);

Fix of underlying bug leading into allocating 2GB
or more would be also nice ;-)

Petr



Reply to: