Changed a bunch of debug and information printfs so that they have a better chance of working on systems where int is smaller than 32 bits also fixed the signed/unsigned type of some to match the type of the arguments.
This commit is contained in:
@@ -89,8 +89,8 @@ void handler_lso(
|
||||
*/
|
||||
#if PRINT_ENABLED
|
||||
fprintf(stderr,
|
||||
"Life Safety Operation: Received operation %d from process id %d for object %id\n",
|
||||
data.operation, data.processId, data.targetObject.instance);
|
||||
"Life Safety Operation: Received operation %d from process id %lu for object %lu\n",
|
||||
data.operation, (unsigned long)data.processId, (unsigned long)data.targetObject.instance);
|
||||
#endif
|
||||
|
||||
len =
|
||||
|
||||
Reference in New Issue
Block a user