From 055e6d89050e523491fabe97eba460953f99296f Mon Sep 17 00:00:00 2001 From: Al Date: Thu, 2 Jul 2015 16:12:24 -0400 Subject: [PATCH] [fix] typo in constant --- src/file_utils.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/file_utils.h b/src/file_utils.h index 450224b2..4338208b 100644 --- a/src/file_utils.h +++ b/src/file_utils.h @@ -17,12 +17,12 @@ extern "C" { #endif #ifdef _WIN32 -#define PATH_SEPERATOR "\\" +#define PATH_SEPARATOR "\\" #else -#define PATH_SEPERATOR "/" +#define PATH_SEPARATOR "/" #endif -#define PATH_SEPERATOR_LEN strlen(PATH_SEPERATOR) +#define PATH_SEPARATOR_LEN strlen(PATH_SEPARATOR) #define TAB_SEPARATOR "\t" #define TAB_SEPARATOR_LEN strlen(TAB_SEPARATOR)