diff options
-rw-r--r-- | examples/text-input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/text-input.c b/examples/text-input.c index ac3c8a44..bfdbc07b 100644 --- a/examples/text-input.c +++ b/examples/text-input.c @@ -137,8 +137,7 @@ static void show_status(void) { goto end; } - if ((unsigned)current.preedit.cursor_begin > strlen(preedit_text) - || (unsigned)current.preedit.cursor_begin > strlen(preedit_text)) { + if ((unsigned)current.preedit.cursor_begin > strlen(preedit_text)) { printf("Cursor out of bounds\n"); goto end; } |