diff options
author | David Robillard <d@drobilla.net> | 2024-12-11 10:06:03 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-12-11 10:06:33 -0500 |
commit | 8874670463276073fe6cdb0bccd0d9a9a982b4c5 (patch) | |
tree | 3a95fee69e627c0bac27206b2db7de1fcf17abc0 /src/win32/win32_util.h | |
parent | 52048ee6db71982693cdeb603e725a867afd99e5 (diff) | |
download | zix-8874670463276073fe6cdb0bccd0d9a9a982b4c5.tar.gz zix-8874670463276073fe6cdb0bccd0d9a9a982b4c5.tar.bz2 zix-8874670463276073fe6cdb0bccd0d9a9a982b4c5.zip |
Fix clang and clang-tidy warnings on Windows
Diffstat (limited to 'src/win32/win32_util.h')
-rw-r--r-- | src/win32/win32_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/win32/win32_util.h b/src/win32/win32_util.h index 3123ef4..3ae2e2b 100644 --- a/src/win32/win32_util.h +++ b/src/win32/win32_util.h @@ -14,11 +14,11 @@ typedef const char ArgPathChar; /// Copy and convert a path argument if necessary ArgPathChar* -arg_path_new(ZixAllocator* const allocator, const char* const path); +arg_path_new(ZixAllocator* allocator, const char* path); /// Free a path from arg_path_new() if necessary void -arg_path_free(ZixAllocator* const allocator, ArgPathChar* const path); +arg_path_free(ZixAllocator* allocator, ArgPathChar* path); /// Convert from (user) UTF-8 to (Windows) UTF-16 wchar_t* |