Fix possibly incorrect type for format string

request may be int or unsigned long depending on the platform, but the
format string assumed unsigned long.

Signed-off-by: Bobby Bingham <koorogi@koorogi.info>
pull/10/head
Bobby Bingham 11 months ago
parent 914164d8db
commit 2182932392

@ -484,7 +484,7 @@ int ioctl (int fd, ioctl_request_t request, ...)
#endif
default:
artsdspdebug("aRts: unhandled /dev/dsp ioctl (%lx - %p)\n",request, argp);
artsdspdebug("aRts: unhandled /dev/dsp ioctl (%lx - %p)\n", (unsigned long)request, argp);
break;
}

Loading…
Cancel
Save