debug print ioctl return value as -integer rather than fffffwhatever.

main
Eric Anholt 2007-07-26 11:26:12 -07:00
parent f9c27aa50b
commit 3c8ebd94e4
1 changed files with 1 additions and 1 deletions

View File

@ -648,7 +648,7 @@ int drm_ioctl(struct inode *inode, struct file *filp,
err_i1:
atomic_dec(&dev->ioctl_count);
if (retcode)
DRM_DEBUG("ret = %x\n", retcode);
DRM_DEBUG("ret = %d\n", retcode);
return retcode;
}
EXPORT_SYMBOL(drm_ioctl);