Index: kernel/generic/src/sysinfo/stats.c
===================================================================
--- kernel/generic/src/sysinfo/stats.c	(revision 196c2530df71f9f2878804f3f8971bb545304e28)
+++ kernel/generic/src/sysinfo/stats.c	(revision b31f735ca8a1895378cba596d256af1d0ba4cd6b)
@@ -474,5 +474,5 @@
 	/* Parse the task ID */
 	task_id_t task_id;
-	if (str_uint64(name, NULL, 0, true, &task_id) != EOK)
+	if (str_uint64_t(name, NULL, 0, true, &task_id) != EOK)
 		return ret;
 	
@@ -545,5 +545,5 @@
 	/* Parse the thread ID */
 	thread_id_t thread_id;
-	if (str_uint64(name, NULL, 0, true, &thread_id) != EOK)
+	if (str_uint64_t(name, NULL, 0, true, &thread_id) != EOK)
 		return ret;
 	
@@ -662,5 +662,5 @@
 	/* Parse the exception number */
 	uint64_t excn;
-	if (str_uint64(name, NULL, 0, true, &excn) != EOK)
+	if (str_uint64_t(name, NULL, 0, true, &excn) != EOK)
 		return ret;
 	
