summaryrefslogtreecommitdiff
path: root/zen/shell_execute.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/shell_execute.h')
-rw-r--r--zen/shell_execute.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/zen/shell_execute.h b/zen/shell_execute.h
index c2ccd837..4eebcca2 100644
--- a/zen/shell_execute.h
+++ b/zen/shell_execute.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,12 +10,12 @@
#include "file_error.h"
#ifdef ZEN_WIN
-#include "scope_guard.h"
-#include "win.h" //includes "windows.h"
+ #include "scope_guard.h"
+ #include "win.h" //includes "windows.h"
#elif defined ZEN_LINUX || defined ZEN_MAC
-#include "thread.h"
-#include <stdlib.h> //::system()
+ #include "thread.h"
+ #include <stdlib.h> //::system()
#endif
bgstack15