diff options
Diffstat (limited to 'booki.c')
| -rw-r--r-- | booki.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -701,7 +701,7 @@ void parse_book(char* current_pos, BOOK* book) { // set 'string_field' to be the pointer to the correct field in the struct string_field = get_string_field(book, datafield.name); // set the value of the struct's field to be the parsed string - *string_field = parse_string(current_pos, &new_pos); + *string_field = parse_strings(current_pos, &new_pos); current_pos = new_pos; break; } else if (datafield.type == booki_number) { |
