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

Author: Jon Severinsson <j...@severinsson.net>
Date:   Sun Aug 11 19:37:01 2013 +0200

radeon/llvm: Add missing "%s" format string to fprintf.

This fixes a compilation warning with -Wformat-security.

CC: "9.2" <mesa-sta...@lists.freedesktop.org>

Reviewed-by: Tom Stellard <thomas.stell...@amd.com>

---

 src/gallium/drivers/radeon/radeon_llvm_emit.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/radeon/radeon_llvm_emit.c 
b/src/gallium/drivers/radeon/radeon_llvm_emit.c
index 1a4d4fd..2dd7bf7 100644
--- a/src/gallium/drivers/radeon/radeon_llvm_emit.c
+++ b/src/gallium/drivers/radeon/radeon_llvm_emit.c
@@ -124,7 +124,7 @@ unsigned radeon_llvm_compile(LLVMModuleRef M, struct 
radeon_llvm_binary *binary,
        r = LLVMTargetMachineEmitToMemoryBuffer(tm, M, LLVMObjectFile, &err,
                                                                 &out_buffer);
        if (r) {
-               fprintf(stderr, err);
+               fprintf(stderr, "%s", err);
                FREE(err);
                return 1;
        }

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to