replaced char* function arguments with str
This commit is contained in:
@@ -59,7 +59,7 @@ void print_keyval(const TomlKeyValue *keyval)
|
||||
|
||||
void print_table(const TomlTable* table)
|
||||
{
|
||||
TomlTableIter it = toml_table_iter_new((TomlTable* )table);
|
||||
TomlTableIter it = toml_table_iter_new((TomlTable*)table);
|
||||
|
||||
printf("{");
|
||||
u64 i = 0;
|
||||
@@ -117,7 +117,7 @@ i32 main(void)
|
||||
PROJECT_SOURCE_DIR "/tests/hard_example_unicode.toml"
|
||||
};
|
||||
|
||||
i32 total_tests = sizeof(filenames) / sizeof(char* );
|
||||
i32 total_tests = sizeof(filenames) / sizeof(char*);
|
||||
i32 num_passed = 0;
|
||||
i32 num_failed = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user