Module: Mesa Branch: master Commit: db6f38cb6a43f315f4e2aa613eae02d5a451295c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=db6f38cb6a43f315f4e2aa613eae02d5a451295c
Author: Rob Herring <[email protected]> Date: Tue May 9 11:56:49 2017 -0500 freedreno: fix clang error in fd_get_compute_param With commit 10c17f23b752 ("freedreno: core compute state support"), Android builds fail with the following error: external/mesa3d/src/gallium/drivers/freedreno/freedreno_screen.c:610:17: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security] sprintf(ret, ir); ^~ Signed-off-by: Rob Herring <[email protected]> Signed-off-by: Rob Clark <[email protected]> --- src/gallium/drivers/freedreno/freedreno_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/freedreno/freedreno_screen.c b/src/gallium/drivers/freedreno/freedreno_screen.c index 052565dcbd..57010d6458 100644 --- a/src/gallium/drivers/freedreno/freedreno_screen.c +++ b/src/gallium/drivers/freedreno/freedreno_screen.c @@ -589,7 +589,7 @@ fd_get_compute_param(struct pipe_screen *pscreen, enum pipe_shader_ir ir_type, enum pipe_compute_cap param, void *ret) { struct fd_screen *screen = fd_screen(pscreen); - const char *ir = "ir3"; + const char * const ir = "ir3"; if (!has_compute(screen)) return 0; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
