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>
(cherry picked from commit 2182932392)
r14.1.x
Bobby Bingham 11 months ago committed by Michele Calgaro
parent 5a3b69dff5
commit 597a5fc507
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -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