i965: fix build warning on clang
authorTapani Pälli <tapani.palli@intel.com>
Thu, 14 Sep 2017 07:26:39 +0000 (10:26 +0300)
committerTapani Pälli <tapani.palli@intel.com>
Fri, 15 Sep 2017 09:39:33 +0000 (12:39 +0300)
fixes following warning:
   warning: format specifies type 'long' but the argument has type 'uint64_t' (aka 'unsigned long long')

cast is needed to avoid this change turning in to another warning:
   warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long')

Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
src/mesa/drivers/dri/i965/brw_bufmgr.c

index 801721991f44867d4b735e601eff6754807942a1..44aaf02ca9f161606e4a8c9f8c5fd797d302a957 100644 (file)
@@ -396,7 +396,8 @@ retry:
 
    pthread_mutex_unlock(&bufmgr->lock);
 
-   DBG("bo_create: buf %d (%s) %ldb\n", bo->gem_handle, bo->name, size);
+   DBG("bo_create: buf %d (%s) %llub\n", bo->gem_handle, bo->name,
+       (unsigned long long) size);
 
    return bo;