aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/glsl/ast_function.cpp
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-05-04 10:53:27 +0000
committermarha <marha@users.sourceforge.net>2011-05-04 10:53:27 +0000
commit7194f10aa94e3dc9d34eaf8bfa0bdb6c8aa46a38 (patch)
treefde26b7364218d210fb8ed46a794f25000d6d4fb /mesalib/src/glsl/ast_function.cpp
parentcc93496bdbb3e7aea51033ece75fa85cfb5845d4 (diff)
downloadvcxsrv-7194f10aa94e3dc9d34eaf8bfa0bdb6c8aa46a38.tar.gz
vcxsrv-7194f10aa94e3dc9d34eaf8bfa0bdb6c8aa46a38.tar.bz2
vcxsrv-7194f10aa94e3dc9d34eaf8bfa0bdb6c8aa46a38.zip
libX11 mesa glproto git update 4 May 2011
Diffstat (limited to 'mesalib/src/glsl/ast_function.cpp')
-rw-r--r--mesalib/src/glsl/ast_function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesalib/src/glsl/ast_function.cpp b/mesalib/src/glsl/ast_function.cpp
index 67147b671..3ba699ad9 100644
--- a/mesalib/src/glsl/ast_function.cpp
+++ b/mesalib/src/glsl/ast_function.cpp
@@ -238,7 +238,7 @@ match_function_by_name(exec_list *instructions, const char *name,
ir_function_signature *sig = (ir_function_signature *) node;
str = prototype_string(sig->return_type, f->name, &sig->parameters);
- _mesa_glsl_error(loc, state, "%s%s\n", prefix, str);
+ _mesa_glsl_error(loc, state, "%s%s", prefix, str);
ralloc_free(str);
prefix = " ";