Compilation and 64-bit fixes to libbe.so sources.
Fixed the usual issues - printf format strings, uint32 instead of addr_t, etc. One thing that isn't so nice is several places where BList is used to store (u)int32, these require a double cast to addr_t then void* to silence a warning on x86_64.
This commit is contained in:
@@ -522,7 +522,7 @@ BApplication::Quit()
|
||||
if (!name)
|
||||
name = "no-name";
|
||||
printf("ERROR - you must Lock the application object before calling "
|
||||
"Quit(), team=%ld, looper=%s\n", Team(), name);
|
||||
"Quit(), team=%" B_PRId32 ", looper=%s\n", Team(), name);
|
||||
unlock = true;
|
||||
if (!Lock())
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user