libretrodb: Update the whitespace

This commit is contained in:
Rob Loach 2019-06-25 01:24:46 -04:00
parent e1125d673d
commit 03d0462fa4
No known key found for this signature in database
GPG Key ID: 627C60834A74A21A
2 changed files with 6 additions and 6 deletions

View File

@ -795,7 +795,7 @@ int main(int argc, char** argv)
fclose(dat_file);
(*dat_buffer)[dat_file_size] = '\0';
printf("Parsing dat file '%s'...\n", *argv);
printf(" %s\n", *argv);
dat_lexer_list = dat_converter_lexer(*dat_buffer, *argv);
dat_parser_list = dat_converter_parser(
dat_parser_list, dat_lexer_list, match_key);

View File

@ -153,7 +153,7 @@ function init(...)
error(" could not open dat file '" .. dat_path .. "':" .. err)
end
print("Parsing dat file '" .. dat_path .. "'...")
print(" " .. dat_path)
local objs = dat_parser(dat_lexer(dat_file, dat_path))
dat_file:close()
for _, obj in pairs(objs) do