diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-20 17:14:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-20 17:14:25 -0400 |
commit | 1ae87786800b5e0411847974b211797b6ada63c4 (patch) | |
tree | 39a7f6f4d53a71106a2cf493db5ea4ad3d29b2d6 /drivers/gpu/drm/drm_proc.c | |
parent | 2bea2e4abf2fe8bc7384103aeaad91089109cfba (diff) |
Fix sprintf format warnings in drm_proc.c
Use "%zd" for size_t, and make sure to have a space between the numbers
instead of depending on the field width.
I don't like warnings in my default targeted build.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/gpu/drm/drm_proc.c')
-rw-r--r-- | drivers/gpu/drm/drm_proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_proc.c b/drivers/gpu/drm/drm_proc.c index d490db4c0de0..ae73b7f7249a 100644 --- a/drivers/gpu/drm/drm_proc.c +++ b/drivers/gpu/drm/drm_proc.c | |||
@@ -522,12 +522,12 @@ static int drm_gem_one_name_info(int id, void *ptr, void *data) | |||
522 | struct drm_gem_object *obj = ptr; | 522 | struct drm_gem_object *obj = ptr; |
523 | struct drm_gem_name_info_data *nid = data; | 523 | struct drm_gem_name_info_data *nid = data; |
524 | 524 | ||
525 | DRM_INFO("name %d size %d\n", obj->name, obj->size); | 525 | DRM_INFO("name %d size %zd\n", obj->name, obj->size); |
526 | if (nid->eof) | 526 | if (nid->eof) |
527 | return 0; | 527 | return 0; |
528 | 528 | ||
529 | nid->len += sprintf(&nid->buf[nid->len], | 529 | nid->len += sprintf(&nid->buf[nid->len], |
530 | "%6d%9d%8d%9d\n", | 530 | "%6d %8zd %7d %8d\n", |
531 | obj->name, obj->size, | 531 | obj->name, obj->size, |
532 | atomic_read(&obj->handlecount.refcount), | 532 | atomic_read(&obj->handlecount.refcount), |
533 | atomic_read(&obj->refcount.refcount)); | 533 | atomic_read(&obj->refcount.refcount)); |