mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
clang-check fix.
This commit is contained in:
parent
8d39b0e035
commit
d25ad4dac6
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ static void textbox_cursor_inc_word ( textbox *tb )
|
|||
break;
|
||||
}
|
||||
}
|
||||
if ( *c == '\0' ) {
|
||||
if ( c == NULL || *c == '\0' ) {
|
||||
return;
|
||||
}
|
||||
while ( ( c = g_utf8_next_char ( c ) ) ) {
|
||||
|
|
Loading…
Reference in a new issue