diff options
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/loader.c | 4 | ||||
| -rw-r--r-- | loader/vk_loader_platform.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/loader/loader.c b/loader/loader.c index 30a3b2d6..d590d04c 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -496,7 +496,7 @@ static char *loader_get_registry_files(const struct loader_instance *inst, snprintf(out, name_size + 1, "%s", name); else snprintf(out + strlen(out), name_size + 2, "%c%s", - PATH_SEPERATOR, name); + PATH_SEPARATOR, name); } name_size = 2048; } @@ -1773,7 +1773,7 @@ static char *loader_get_next_path(char *path) { if (path == NULL) return NULL; - next = strchr(path, PATH_SEPERATOR); + next = strchr(path, PATH_SEPARATOR); if (next == NULL) { len = (uint32_t)strlen(path); next = path + len; diff --git a/loader/vk_loader_platform.h b/loader/vk_loader_platform.h index 0ffc9238..0898b1e5 100644 --- a/loader/vk_loader_platform.h +++ b/loader/vk_loader_platform.h @@ -47,7 +47,7 @@ #include <libgen.h> // VK Library Filenames, Paths, etc.: -#define PATH_SEPERATOR ':' +#define PATH_SEPARATOR ':' #define DIRECTORY_SYMBOL '/' #define VULKAN_DIR "/vulkan/" @@ -236,7 +236,7 @@ using namespace std; #endif // __cplusplus // VK Library Filenames, Paths, etc.: -#define PATH_SEPERATOR ';' +#define PATH_SEPARATOR ';' #define DIRECTORY_SYMBOL '\\' #define DEFAULT_VK_REGISTRY_HIVE HKEY_LOCAL_MACHINE #define DEFAULT_VK_DRIVERS_INFO "SOFTWARE\\Khronos\\" API_NAME "\\Drivers" |
