1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-04 02:35:29 +00:00

[form] explicit cast to char *

This commit is contained in:
Witold Filipczyk 2022-02-21 19:40:16 +01:00
parent af06f55353
commit c073cba185

View File

@ -462,7 +462,7 @@ utf8:
retry_after_scroll: retry_after_scroll:
text = fs->value; text = fs->value;
if (!text) text = ""; if (!text) text = (char *)"";
len = strlen(text); len = strlen(text);
int_bounds(&fs->state, 0, len); int_bounds(&fs->state, 0, len);
int_bounds(&fs->vpos, 0, fs->state); int_bounds(&fs->vpos, 0, fs->state);