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:
Alex Smith
2012-07-30 21:27:21 +01:00
parent ef67788fba
commit 9be774b553
28 changed files with 74 additions and 66 deletions
+1 -1
View File
@@ -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;