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

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