https://bugs.documentfoundation.org/show_bug.cgi?id=126358
--- Comment #1 from Xisco FaulĂ <[email protected]> ---
Changing
https://opengrok.libreoffice.org/xref/core/dbaccess/source/filter/hsqldb/rowinputbinary.cxx?r=2e26ef34#53
from
int shifted_in = (bytes[i] & (1 << (7 - j))) ? 1 : 0;
to
int shifted_in = (bytes[i] & (1 << (7 - j))) ? 0 : 1;
would make the negative numbers to be displayed correctly... we would just need
to append the '-' sign at the beginning
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs