]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix is_reg (Windows)
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 1 Apr 2020 16:41:03 +0000 (18:41 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 1 Apr 2020 16:41:03 +0000 (18:41 +0200)
src/compile.c

index 2794a753cdb842bf91c0ecd5cb3ef6e7193334da..5a76f67cc42deb88649aaa013c60c8fdde2e0ae1 100644 (file)
@@ -77,7 +77,7 @@ ANN static int is_reg(const m_str path) {
 }
 #else
 ANN static m_bool is_reg(const m_str path) {
-  cionst DWORD dw = GetFileAttributes(path);
+  const DWORD dw = GetFileAttributes(path);
   return !(dw == INVALID_FILE_ATTRIBUTES ||
            dw & FILE_ATTRIBUTE_DIRECTORY);
 }