Skip to content

Commit

Permalink
Remove indentation in empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Dec 11, 2024
1 parent 61c0afb commit c28725c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler_v4/src/mono_to_c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ impl<'h> Context<'h> {
int length = snprintf(NULL, 0, \"%ld\", {int}->value);
char* result = malloc(length + 1);
snprintf(result, length + 1, \"%ld\", {int}->value);
Text* result_pointer = malloc(sizeof(Text));
result_pointer->value = result;
return result_pointer;",
Expand Down

0 comments on commit c28725c

Please sign in to comment.