From: Vinson Lee Date: Wed, 15 Sep 2010 12:17:57 +0000 (-0700) Subject: glsl: Fix 'format not a string literal and no format arguments' warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f20f2cc3306310f6fc4c338f91cfac10f98335d3;p=mesa.git glsl: Fix 'format not a string literal and no format arguments' warning. Fix the following GCC warning. loop_controls.cpp: In function 'int calculate_iterations(ir_rvalue*, ir_rvalue*, ir_rvalue*, ir_expression_operation)': loop_controls.cpp:88: warning: format not a string literal and no format arguments --- diff --git a/src/glsl/loop_controls.cpp b/src/glsl/loop_controls.cpp index 9619d8ae555..2ef3d305254 100644 --- a/src/glsl/loop_controls.cpp +++ b/src/glsl/loop_controls.cpp @@ -85,7 +85,7 @@ int calculate_iterations(ir_rvalue *from, ir_rvalue *to, ir_rvalue *increment, enum ir_expression_operation op) { - void *mem_ctx = talloc_init(__func__); + void *mem_ctx = talloc_init("%s", __func__); ir_expression *const sub = new(mem_ctx) ir_expression(ir_binop_sub, from->type, to, from);