glsl: fix formatting glitch in _mesa_print_ir()

Print the closing ) before the newline.  Trivial.
This commit is contained in:
Brian Paul
2015-06-19 16:45:44 -06:00
parent 7c3da3592e
commit a1f84453a2

View File

@@ -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