Changeset 5a6cc679 in mainline for uspace/app/sysinfo/sysinfo.c
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinfo/sysinfo.c
r132ab5d1 r5a6cc679 60 60 } 61 61 62 static int print_item_val(char *ipath)62 static errno_t print_item_val(char *ipath) 63 63 { 64 64 sysarg_t value; 65 int rc = sysinfo_get_value(ipath, &value);65 errno_t rc = sysinfo_get_value(ipath, &value); 66 66 if (rc != EOK) { 67 67 printf("Error reading item '%s'.\n", ipath);
Note:
See TracChangeset
for help on using the changeset viewer.