summaryrefslogtreecommitdiff
path: root/src/mir_core/path.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mir_core/path.cpp')
-rw-r--r--src/mir_core/path.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_core/path.cpp b/src/mir_core/path.cpp
index d4148f457d..ab0ee26b14 100644
--- a/src/mir_core/path.cpp
+++ b/src/mir_core/path.cpp
@@ -77,8 +77,8 @@ MIR_CORE_DLL(int) PathToAbsolute(const char *pSrc, char *pOut, const char *base)
if (pSrc[0] == '\\')
pSrc++;
- mir_snprintf(buf, MAX_PATH, "%s%s", base, pSrc);
- return GetFullPathNameA(buf, MAX_PATH, pOut, NULL);
+ mir_snprintf(buf, SIZEOF(buf), "%s%s", base, pSrc);
+ return GetFullPathNameA(buf, SIZEOF(buf), pOut, NULL);
}
MIR_CORE_DLL(void) CreatePathToFile(char *szFilePath)