summaryrefslogtreecommitdiff
path: root/zen/file_id_def.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_id_def.h')
-rw-r--r--zen/file_id_def.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/zen/file_id_def.h b/zen/file_id_def.h
index 3b217b3d..a96e978b 100644
--- a/zen/file_id_def.h
+++ b/zen/file_id_def.h
@@ -1,6 +1,6 @@
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -10,10 +10,10 @@
#include <utility>
#ifdef ZEN_WIN
-#include "win.h" //includes "windows.h"
+ #include "win.h" //includes "windows.h"
#elif defined ZEN_LINUX || defined ZEN_MAC
-#include <sys/stat.h>
+ #include <sys/stat.h>
#endif
bgstack15