X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=sys_sdl.c;h=228c0a49f627449efa432e3567cb996d9cfbb48a;hp=cd769979c2753535a32c4b68d79707a25b5a9f4a;hb=d090340b054029faddb432e2c66085e6e91abcf7;hpb=023e7bc50b3b132f1219a0ac2c57c297ea4d291d diff --git a/sys_sdl.c b/sys_sdl.c index cd769979..228c0a49 100644 --- a/sys_sdl.c +++ b/sys_sdl.c @@ -86,7 +86,7 @@ void Sys_PrintToTerminal(const char *text) #endif while(*text) { - fs_offset_t written = (fs_offset_t)write(outfd, text, strlen(text)); + fs_offset_t written = (fs_offset_t)write(outfd, text, (int)strlen(text)); if(written <= 0) break; // sorry, I cannot do anything about this error - without an output text += written;