summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-02-19 23:16:33 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2012-02-23 19:03:25 +0100
commitc74a7e161e872110f4311482b95b0014363c8fe9 (patch)
treea7d72bf057785f5a2ff2b3741f9c4c97a700bdfa
parent5751b1ae8a471c660349f548d7fec6a2a2dfa62c (diff)
mingw: fix header case
linux systems need it in lower-case, Windows systems shouldn't care.
-rw-r--r--vdagent/display_setting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vdagent/display_setting.cpp b/vdagent/display_setting.cpp
index 0116346..8abef3f 100644
--- a/vdagent/display_setting.cpp
+++ b/vdagent/display_setting.cpp
@@ -16,7 +16,7 @@
*/
#include <windows.h>
#include <stdio.h>
-#include <Sddl.h>
+#include <sddl.h>
#include <string.h>
#include <tlhelp32.h>
#include "display_setting.h"