Skip to content

Commit

Permalink
Fixed compile warning in IME test program.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Dec 1, 2015
1 parent b2445f7 commit 1e2a443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testime.c
Expand Up @@ -289,7 +289,7 @@ int main(int argc, char *argv[]) {
break;
case SDLK_BACKSPACE:
{
int textlen=SDL_strlen(text);
size_t textlen = SDL_strlen(text);

do {
if (textlen==0)
Expand Down

0 comments on commit 1e2a443

Please sign in to comment.