diff options
author | pommicket <pommicket@gmail.com> | 2022-11-02 19:58:20 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-02 19:58:20 -0400 |
commit | 9d0433ba028792f5a468507dba28d406b9f758e7 (patch) | |
tree | f83f5db4b4d6e54ef70c252f624b108d40978ac6 /util.c | |
parent | b070e5ce01c829bd101b1e0eda49f1e25d9d125c (diff) |
fixed path-specific settings bugs. stuff seems to be working now
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ static char32_t const *util_mem32chr_const(char32_t const *s, char32_t c, size_t return NULL; } -static bool str_is_prefix(char const *str, char const *prefix) { +static bool str_has_prefix(char const *str, char const *prefix) { return strncmp(str, prefix, strlen(prefix)) == 0; } |