mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
Fix function call parameter printer to omit extraneous leading comma
The output of all test cases was verified to be the same using diff.
This commit is contained in:
parent
2b97dc657a
commit
2384937835
1 changed files with 2 additions and 1 deletions
|
|
@ -326,7 +326,8 @@ ast_expression::print(void) const
|
|||
printf("( ");
|
||||
|
||||
foreach_list_const (n, &this->expressions) {
|
||||
printf(", ");
|
||||
if (n != this->expressions.get_head())
|
||||
printf(", ");
|
||||
|
||||
ast_node *ast = exec_node_data(ast_node, n, link);
|
||||
ast->print();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue