Skip to content

Commit

Permalink
Add a missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Oct 6, 2023
1 parent ae09c2e commit b19efd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/backends/glsl.c
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ static void write_globals(char *glsl, size_t *offset, function *main) {
*offset +=
sprintf(&glsl[*offset], "\t%s _%" PRIu64 "_%s;\n", type_string(t->members.m[i].type.type), g.var_index, get_name(t->members.m[i].name));
}
*offset += sprintf(&glsl[*offset], "}\n\n");
*offset += sprintf(&glsl[*offset], "};\n\n");
}
}
}
Expand Down

0 comments on commit b19efd8

Please sign in to comment.