Skip to content

Commit

Permalink
Fix compiler warning on 32bit arch
Browse files Browse the repository at this point in the history
AuUint32 is long unsigned there.
  • Loading branch information
sthibaul committed Jun 23, 2024
1 parent 54ff433 commit fc8755d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/audio/nas.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ static AuBool _nas_handle_server_error(AuServer * server, AuErrorEvent * event)
since it's not allowed to talk to the server inside error handlers
because of possible deadlocks. */
fprintf(stderr, "NAS: Serial number of failed request: %d\n",
event->serial);
(int) event->serial);
fprintf(stderr, "NAS: Error code: %d\n", event->error_code);
fprintf(stderr, "NAS: Resource id: %d\n", event->resourceid);
fprintf(stderr, "NAS: Resource id: %d\n", (int) event->resourceid);
fprintf(stderr, "NAS: Request code: %d\n", event->request_code);
fprintf(stderr, "NAS: Minor code: %d\n\n", event->minor_code);

Expand Down

0 comments on commit fc8755d

Please sign in to comment.