comparison src/stdlib/SDL_string.c @ 3253:5d7ef5970073

Fixed issues building 64-bit Windows binary
author Sam Lantinga <slouken@libsdl.org>
date Sat, 05 Sep 2009 23:37:35 +0000
parents 99210400e8b9
children f7b03b6838cb
comparison
equal deleted inserted replaced
3252:d2465e21f103 3253:5d7ef5970073
1340 --maxlen; 1340 --maxlen;
1341 } 1341 }
1342 } 1342 }
1343 *text = '\0'; 1343 *text = '\0';
1344 1344
1345 return (text - textstart); 1345 return (int)(text - textstart);
1346 } 1346 }
1347 #endif 1347 #endif
1348 /* vi: set ts=4 sw=4 expandtab: */ 1348 /* vi: set ts=4 sw=4 expandtab: */