Fixed compile warning in IME test program.

This commit is contained in:
Philipp Wiesemann 2015-12-01 22:22:58 +01:00
parent b2445f7bbd
commit 1e2a4439a3
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ int main(int argc, char *argv[]) {
break; break;
case SDLK_BACKSPACE: case SDLK_BACKSPACE:
{ {
int textlen=SDL_strlen(text); size_t textlen = SDL_strlen(text);
do { do {
if (textlen==0) if (textlen==0)