Index: kernel/generic/src/debug/symtab.c
===================================================================
--- kernel/generic/src/debug/symtab.c	(revision 37c312a7ac9843a2f846a0434e94d88f096e94cb)
+++ kernel/generic/src/debug/symtab.c	(revision 301ff30236f92bdd150603d5f6eb622239140696)
@@ -56,5 +56,5 @@
 {
 #ifdef CONFIG_SYMTAB
-	count_t i;
+	size_t i;
 	
 	for (i = 1; symbol_table[i].address_le; i++) {
@@ -113,9 +113,9 @@
  *
  */
-static const char *symtab_search_one(const char *name, count_t *startpos)
-{
-	count_t namelen = str_length(name);
-	
-	count_t pos;
+static const char *symtab_search_one(const char *name, size_t *startpos)
+{
+	size_t namelen = str_length(name);
+	
+	size_t pos;
 	for (pos = *startpos; symbol_table[pos].address_le; pos++) {
 		const char *curname = symbol_table[pos].symbol_name;
@@ -154,6 +154,6 @@
 {
 #ifdef CONFIG_SYMTAB
-	count_t found = 0;
-	count_t pos = 0;
+	size_t found = 0;
+	size_t pos = 0;
 	const char *hint;
 	
@@ -183,5 +183,5 @@
 {
 #ifdef CONFIG_SYMTAB
-	count_t pos = 0;
+	size_t pos = 0;
 	while (symtab_search_one(name, &pos)) {
 		uintptr_t addr = uint64_t_le2host(symbol_table[pos].address_le);
@@ -204,5 +204,5 @@
  *
  */
-int symtab_compl(char *input, count_t size)
+int symtab_compl(char *input, size_t size)
 {
 #ifdef CONFIG_SYMTAB
@@ -217,6 +217,6 @@
 		return 0;
 	
-	count_t found = 0;
-	count_t pos = 0;
+	size_t found = 0;
+	size_t pos = 0;
 	const char *hint;
 	char output[MAX_SYMBOL_NAME];
