1
0
Fork 0

Ladislav Michnovič: fix a 64bit problem.

This commit is contained in:
curt 2007-05-17 18:43:36 +00:00
parent 0e6203a4d2
commit 738b40158d

View file

@ -117,7 +117,7 @@ FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name)
char buf[256];
if(!name) {
sprintf(buf, "FGNasalScript@%p", script);
sprintf(buf, "FGNasalScript@%p", (void *)script);
name = buf;
}