Mesa (master): panfrost: Fix sscanf format options

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Mar 27 16:11:14 UTC 2019


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

Author: Tomeu Vizoso <tomeu.vizoso at collabora.com>
Date:   Wed Mar 27 14:56:00 2019 +0100

panfrost: Fix sscanf format options

Signed-off-by: Tomeu Vizoso <tomeu.vizoso at collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa at rosenzweig.io>

---

 src/gallium/drivers/panfrost/pandecode/cmdline.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/panfrost/pandecode/cmdline.c b/src/gallium/drivers/panfrost/pandecode/cmdline.c
index b2ba21cfe41..87e6defcb56 100644
--- a/src/gallium/drivers/panfrost/pandecode/cmdline.c
+++ b/src/gallium/drivers/panfrost/pandecode/cmdline.c
@@ -126,7 +126,7 @@ pandecode_read_mmap(const char *base, const char *line)
         mali_ptr addr;
         char name[512];
 
-        sscanf(line, "MMAP %lx %s", &addr, name);
+        sscanf(line, "MMAP %" PRIx64 " %s", &addr, name);
         pandecode_read_memory(base, name, addr);
 }
 
@@ -137,7 +137,7 @@ pandecode_read_job_submit(const char *base, const char *line)
         unsigned core_req;
         unsigned is_bifrost;
 
-        sscanf(line, "JS %lx %x %x", &addr, &core_req, &is_bifrost);
+        sscanf(line, "JS %" PRIx64 " %x %x", &addr, &core_req, &is_bifrost);
         pandecode_replay_jc(addr, is_bifrost);
 }
 




More information about the mesa-commit mailing list