Against the frozen viewer code, there was an error in llresmgr.cpp with "deprecated conversion of string to char*" I changed two lines: - fakeconv.negative_sign = "-"; - fakeconv.mon_grouping = "\x03\x03\x00"; // commas every 3 digits + fakeconv.negative_sign = strdup("-"); + fakeconv.mon_grouping = strdup("\x03\x03\x00"); // commas every 3 digits