Skip to content

Commit

Permalink
Fix build pt6
Browse files Browse the repository at this point in the history
  • Loading branch information
slobodan-ilic committed Jun 21, 2024
1 parent db6164e commit 07e323f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/spss/readstat_sav_parse_mr_name.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ readstat_error_t extract_mr_data(const char *line, mr_set_t *result) {
char *pe = p + strlen(p) + 1;

// Variables needed for passing Ragel intermediate results
char mr_type;
char mr_type = '\0';
int mr_counted_value = -1;
int mr_subvar_count = -1;
char** mr_subvariables = NULL;
Expand Down
2 changes: 1 addition & 1 deletion src/spss/readstat_sav_parse_mr_name.rl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ readstat_error_t extract_mr_data(const char *line, mr_set_t *result) {
char *pe = p + strlen(p) + 1;

// Variables needed for passing Ragel intermediate results
char mr_type;
char mr_type = '\0';
int mr_counted_value = -1;
int mr_subvar_count = -1;
char** mr_subvariables = NULL;
Expand Down

0 comments on commit 07e323f

Please sign in to comment.