aboutsummaryrefslogtreecommitdiffstats
path: root/src/string_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_utils.h')
-rw-r--r--src/string_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string_utils.h b/src/string_utils.h
index b9d8ebff..0e9eee43 100644
--- a/src/string_utils.h
+++ b/src/string_utils.h
@@ -90,14 +90,14 @@ is_base64(const int c)
}
static inline bool
-is_windows_path(const uint8_t* path)
+is_windows_path(const char* path)
{
return is_alpha(path[0]) && (path[1] == ':' || path[1] == '|') &&
(path[2] == '/' || path[2] == '\\');
}
size_t
-serd_substrlen(const uint8_t* str, size_t len, SerdNodeFlags* flags);
+serd_substrlen(const char* str, size_t len, SerdNodeFlags* flags);
static inline char
serd_to_upper(const char c)