Changes in kernel/generic/src/sysinfo/stats.c [196c253:059a8e4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/sysinfo/stats.c
r196c253 r059a8e4 474 474 /* Parse the task ID */ 475 475 task_id_t task_id; 476 if (str_uint64 (name, NULL, 0, true, &task_id) != EOK)476 if (str_uint64_t(name, NULL, 0, true, &task_id) != EOK) 477 477 return ret; 478 478 … … 545 545 /* Parse the thread ID */ 546 546 thread_id_t thread_id; 547 if (str_uint64 (name, NULL, 0, true, &thread_id) != EOK)547 if (str_uint64_t(name, NULL, 0, true, &thread_id) != EOK) 548 548 return ret; 549 549 … … 662 662 /* Parse the exception number */ 663 663 uint64_t excn; 664 if (str_uint64 (name, NULL, 0, true, &excn) != EOK)664 if (str_uint64_t(name, NULL, 0, true, &excn) != EOK) 665 665 return ret; 666 666
Note:
See TracChangeset
for help on using the changeset viewer.