Changeset 87822ce in mainline for uspace/lib/clui/tinput.c
- Timestamp:
- 2021-03-04T19:14:30Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d6c4d40
- Parents:
- 760a392
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/clui/tinput.c
r760a392 r87822ce 874 874 errno_t tinput_read_i(tinput_t *ti, const char *istr, char **dstr) 875 875 { 876 errno_t rc; 877 876 878 console_flush(ti->console); 877 879 if (console_get_size(ti->console, &ti->con_cols, &ti->con_rows) != EOK) … … 891 893 892 894 cons_event_t ev; 893 if (!console_get_event(ti->console, &ev)) 895 rc = console_get_event(ti->console, &ev); 896 if (rc != EOK) 894 897 return EIO; 895 898
Note:
See TracChangeset
for help on using the changeset viewer.