From: Jon Severinsson Date: Sun, 11 Aug 2013 17:37:01 +0000 (+0200) Subject: radeon/llvm: Add missing "%s" format string to fprintf. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9298f537a72dc2323898e91c40894f55e3c4754a;p=mesa.git radeon/llvm: Add missing "%s" format string to fprintf. This fixes a compilation warning with -Wformat-security. CC: "9.2" Reviewed-by: Tom Stellard --- diff --git a/src/gallium/drivers/radeon/radeon_llvm_emit.c b/src/gallium/drivers/radeon/radeon_llvm_emit.c index 1a4d4fdd22b..2dd7bf7b935 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; }