Skip to content

Commit

Permalink
Address Evan's comments pt3
Browse files Browse the repository at this point in the history
  • Loading branch information
slobodan-ilic committed Aug 15, 2024
1 parent 6f500cb commit 949978e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/readstat.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ readstat_endian_t readstat_get_endianness(readstat_metadata_t *metadata);
const char *readstat_get_table_name(readstat_metadata_t *metadata);
const char *readstat_get_file_label(readstat_metadata_t *metadata);
const char *readstat_get_file_encoding(readstat_metadata_t *metadata);
const mr_set_t *readstat_get_mr_sets(readstat_metadata_t *metadata);
const mr_set_t *readstat_get_multiple_response_sets(readstat_metadata_t *metadata);
size_t readstat_get_multiple_response_sets_length(readstat_metadata_t *metadata);

typedef struct readstat_value_s {
Expand Down
2 changes: 1 addition & 1 deletion src/readstat_metadata.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ size_t readstat_get_multiple_response_sets_length(readstat_metadata_t *metadata)
return metadata->multiple_response_sets_length;
}

const mr_set_t *readstat_get_mr_sets(readstat_metadata_t *metadata) {
const mr_set_t *readstat_get_multiple_response_sets(readstat_metadata_t *metadata) {
return metadata->mr_sets;
}

0 comments on commit 949978e

Please sign in to comment.