Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2013-09-16 23:23:40 +0400
committerJason Perkins <starkos@industriousone.com>2013-09-16 23:23:40 +0400
commit2d01862fcfed59fa587009d366008493883c2edf (patch)
treeabc11b9a2f2755e4585e6d9b4702f6ad7a823fa9
parenta1a3bd570f8678bd6464affbd0ed6e30132970b9 (diff)
Fix incompatible types warning from VS 2005 (Oliver Schneider)
-rw-r--r--src/host/os_uuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/os_uuid.c b/src/host/os_uuid.c
index 9a07e9e..28be4e8 100644
--- a/src/host/os_uuid.c
+++ b/src/host/os_uuid.c
@@ -15,7 +15,7 @@ int os_uuid(lua_State* L)
char uuid[38];
#if PLATFORM_WINDOWS
- CoCreateGuid((char*)bytes);
+ CoCreateGuid((GUID*)bytes);
#else
int result;