Changeset b7fd2a0 in mainline for uspace/dist/src/c/demos/edit/edit.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/dist/src/c/demos/edit/edit.c
r36f0738 rb7fd2a0 190 190 cons_event_t ev; 191 191 bool new_file; 192 int rc;192 errno_t rc; 193 193 194 194 con = console_init(stdin, stdout); … … 580 580 { 581 581 spt_t sp, ep; 582 int rc;582 errno_t rc; 583 583 584 584 status_display("Saving..."); … … 615 615 } 616 616 617 int rc = file_save(fname);617 errno_t rc = file_save(fname); 618 618 if (rc != EOK) 619 619 return; … … 1330 1330 1331 1331 match_t match; 1332 int rc = search_next_match(search, &match);1332 errno_t rc = search_next_match(search, &match); 1333 1333 if (rc != EOK) { 1334 1334 status_display("Failed searching."); … … 1448 1448 size_t off; 1449 1449 wchar_t c; 1450 int rc;1450 errno_t rc; 1451 1451 1452 1452 rc = clipboard_get_str(&str);
Note:
See TracChangeset
for help on using the changeset viewer.