Skip to content

Commit

Permalink
i915: fix wrong 'size_t' format string
Browse files Browse the repository at this point in the history
For the fifteen bazillionth time.

See also commits f06da26 and
aeb565d ("i915: Fix more size_t format
string warnings" and "Fix annoying DRM_ERROR() string warning").

Grr-target: Eric Anholt <eric@anholt.net>
Grr-target: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Linus Torvalds committed Mar 28, 2009
1 parent db93681 commit 0b4d569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/i915_gem_debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ static int i915_gem_fence_regs_info(struct seq_file *m, void *data)

obj_priv = obj->driver_private;
seq_printf(m, "Fenced object[%2d] = %p: %s "
"%08x %08x %08x %s %08x %08x %d",
"%08x %08zx %08x %s %08x %08x %d",
i, obj, get_pin_flag(obj_priv),
obj_priv->gtt_offset,
obj->size, obj_priv->stride,
Expand Down

0 comments on commit 0b4d569

Please sign in to comment.