Fix annoying DRM_ERROR() string warning

Use '%zu' to print out a size_t variable, not '%d'. Another case of the
"let's keep at least Linus' defconfig compile warningless" rule.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

+1 -1
+1 -1
drivers/gpu/drm/i915/i915_gem.c
··· 3427 3427 ret = i915_gem_init_phys_object(dev, id, 3428 3428 obj->size); 3429 3429 if (ret) { 3430 - DRM_ERROR("failed to init phys object %d size: %d\n", id, obj->size); 3430 + DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size); 3431 3431 goto out; 3432 3432 } 3433 3433 }