diff options
Diffstat (limited to '3rdparty/genie/src/host/premake.c')
-rw-r--r-- | 3rdparty/genie/src/host/premake.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/genie/src/host/premake.c b/3rdparty/genie/src/host/premake.c index 037f7707fb4..a8ad1140912 100644 --- a/3rdparty/genie/src/host/premake.c +++ b/3rdparty/genie/src/host/premake.c @@ -15,9 +15,9 @@ #define COPYRIGHT \ - "Copyright (c) 2014-2015 Branimir Karadžić, Neil Richardson,\n" \ + "Copyright (c) 2014-2018 Branimir Karadžić, Neil Richardson,\n" \ "Mike Popoloski, Drew Solomon, Ted de Munnik, Miodrag Milanović\n" \ - "Brett Vickers, Terry Hendrix II.\n" \ + "Brett Vickers, Terry Hendrix II, Johan Skoeld.\n" \ "Copyright (C) 2002-2013 Jason Perkins and the Premake Project" #define ERROR_MESSAGE "%s\n" @@ -265,7 +265,7 @@ int process_option(lua_State* L, const char* arg) char* ptr = strchr(arg, '='); if (ptr) { - int len = ptr - arg; + int len = (int)(ptr - arg); if (len > 511) len = 511; strncpy(key, arg, len); key[len] = '\0'; |