Warning fix (use %p format for filp)

main
Leif Delgass 2003-03-31 04:14:35 +00:00
parent 8926acac37
commit 8e51112fe0
2 changed files with 2 additions and 2 deletions

View File

@ -445,7 +445,7 @@ static int DRM(dma_get_buffers_of_order)(struct file *filp, drm_dma_t *d,
d->flags & _DRM_DMA_WAIT); d->flags & _DRM_DMA_WAIT);
if (!buf) break; if (!buf) break;
if (buf->pending || buf->waiting) { if (buf->pending || buf->waiting) {
DRM_ERROR("Free buffer %d in use by %x (w%d, p%d)\n", DRM_ERROR("Free buffer %d in use: filp %p (w%d, p%d)\n",
buf->idx, buf->idx,
buf->filp, buf->filp,
buf->waiting, buf->waiting,

View File

@ -445,7 +445,7 @@ static int DRM(dma_get_buffers_of_order)(struct file *filp, drm_dma_t *d,
d->flags & _DRM_DMA_WAIT); d->flags & _DRM_DMA_WAIT);
if (!buf) break; if (!buf) break;
if (buf->pending || buf->waiting) { if (buf->pending || buf->waiting) {
DRM_ERROR("Free buffer %d in use by %x (w%d, p%d)\n", DRM_ERROR("Free buffer %d in use: filp %p (w%d, p%d)\n",
buf->idx, buf->idx,
buf->filp, buf->filp,
buf->waiting, buf->waiting,