Module: Mesa
Branch: master
Commit: b3beb6207f16ac55e3934b4d4d1f178adb4f4cad
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=b3beb6207f16ac55e3934b4d4d1f178adb4f4cad

Author: Peter Seiderer <[email protected]>
Date:   Sun Mar 22 13:03:00 2020 +0100

v3d_bufmgr: fix time_t printf

Fixes:

  error: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has 
type ‘time_t’ {aka ‘long long int’}

Signed-off-by: Peter Seiderer <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4279>

---

 src/gallium/drivers/v3d/v3d_bufmgr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/v3d/v3d_bufmgr.c 
b/src/gallium/drivers/v3d/v3d_bufmgr.c
index 50e4081dafd..31a08036b38 100644
--- a/src/gallium/drivers/v3d/v3d_bufmgr.c
+++ b/src/gallium/drivers/v3d/v3d_bufmgr.c
@@ -81,7 +81,7 @@ v3d_bo_dump_stats(struct v3d_screen *screen)
                 struct timespec time;
                 clock_gettime(CLOCK_MONOTONIC, &time);
                 fprintf(stderr, "  now:               %ld\n",
-                        time.tv_sec);
+                        (long)time.tv_sec);
         }
 }
 

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to