[sldev] Notes from a Mac Build

Lillian Yiyuan lillie.yiyuan at gmail.com
Tue Nov 3 09:26:23 PST 2009


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


More information about the SLDev mailing list