Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrichardson committed Aug 7, 2023
1 parent da6c2d4 commit 6613b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffcx/codegeneration/C/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def generator(ir, options):
code = "return NULL;"
else:
names = ", ".join(f'"{name}"' for name in cstnames)
code = "static const char* names[] = {{{names}}};\n"
code = f"static const char* names[] = {{{names}}};\n"
code += "return names;\n"
d["constant_name_map"] = code

Expand Down

0 comments on commit 6613b82

Please sign in to comment.