Changes in uspace/app/sysinfo/sysinfo.c [b7fd2a0:38d150e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinfo/sysinfo.c
rb7fd2a0 r38d150e 60 60 } 61 61 62 static errno_t print_item_val(char *ipath)62 static int print_item_val(char *ipath) 63 63 { 64 64 sysarg_t value; 65 errno_t rc = sysinfo_get_value(ipath, &value);65 int 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.