Skip to content

Commit

Permalink
Rename the offset-parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Oct 3, 2024
1 parent a982b8d commit cf270ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/integrations/kope.c
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ void kope_export(char *directory, api_kind api) {
definition d = set->definitions[definition_index];
switch (d.kind) {
case DEFINITION_CONST_CUSTOM:
fprintf(output, ", uint32_t %s_offset", get_name(get_global(d.global)->name));
fprintf(output, ", uint32_t %s_index", get_name(get_global(d.global)->name));
break;
}
}
Expand Down Expand Up @@ -1081,7 +1081,7 @@ void kope_export(char *directory, api_kind api) {
definition d = set->definitions[definition_index];
switch (d.kind) {
case DEFINITION_CONST_CUSTOM:
fprintf(output, ", uint32_t %s_offset", get_name(get_global(d.global)->name));
fprintf(output, ", uint32_t %s_index", get_name(get_global(d.global)->name));
break;
}
}
Expand Down

0 comments on commit cf270ef

Please sign in to comment.