diff options
author | 3gg <3gg@shellblade.net> | 2023-07-16 16:31:43 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2023-07-16 16:31:43 -0700 |
commit | f48986597e6ff092feb0f18a79c6fa51a3f0e3bb (patch) | |
tree | 4182eb80d0eedc30448cda4d69c24cccd1bdcaf4 /filesystem/include/filesystem.h | |
parent | 987d395b7b88b58cb412c88a57deb0e1eada1c37 (diff) |
Fix path concatenation.
Diffstat (limited to 'filesystem/include/filesystem.h')
-rw-r--r-- | filesystem/include/filesystem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filesystem/include/filesystem.h b/filesystem/include/filesystem.h index 62bd7f0..3dce87f 100644 --- a/filesystem/include/filesystem.h +++ b/filesystem/include/filesystem.h | |||
@@ -15,5 +15,5 @@ void* read_file(const char* filepath); | |||
15 | 15 | ||
16 | /// Make a path relative to the parent directory of a file. | 16 | /// Make a path relative to the parent directory of a file. |
17 | bool make_relative_path( | 17 | bool make_relative_path( |
18 | size_t max_path_length, const char* filepath, const char* path, | 18 | const char* filepath, const char* path, char* relative, |
19 | char* relative); | 19 | size_t relative_length); |