projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7c3da35
)
glsl: fix formatting glitch in _mesa_print_ir()
author
Brian Paul
<brianp@vmware.com>
Fri, 19 Jun 2015 22:45:44 +0000
(16:45 -0600)
committer
Brian Paul
<brianp@vmware.com>
Fri, 19 Jun 2015 22:46:29 +0000
(16:46 -0600)
Print the closing ) before the newline. Trivial.
src/glsl/ir_print_visitor.cpp
patch
|
blob
|
history
diff --git
a/src/glsl/ir_print_visitor.cpp
b/src/glsl/ir_print_visitor.cpp
index c991658ab4bfba0f167123be65f3fa08d404db0b..4cbcad4ec6154d4151c448d69721ed1d37397a70 100644
(file)
--- a/
src/glsl/ir_print_visitor.cpp
+++ b/
src/glsl/ir_print_visitor.cpp
@@
-72,7
+72,7
@@
_mesa_print_ir(FILE *f, exec_list *instructions,
if (ir->ir_type != ir_type_function)
fprintf(f, "\n");
}
- fprintf(f, "
\n)
");
+ fprintf(f, "
)\n
");
}
void