diff options
author | Marvin Borner | 2019-12-21 22:22:03 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-21 22:22:03 +0100 |
commit | 499784a824c541001c2fd52ae95eba88dcfc952b (patch) | |
tree | c3c26d7c8a3b9291d909f4655b7d27a5ae2369bc /src/kernel/lib/stdlib/itoa.c | |
parent | 38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (diff) |
Many debugging/serial improvements
Sorry for the little information, but I did many things :)
Diffstat (limited to 'src/kernel/lib/stdlib/itoa.c')
-rw-r--r-- | src/kernel/lib/stdlib/itoa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/lib/stdlib/itoa.c b/src/kernel/lib/stdlib/itoa.c index 897fd55..67273b3 100644 --- a/src/kernel/lib/stdlib/itoa.c +++ b/src/kernel/lib/stdlib/itoa.c @@ -4,7 +4,7 @@ #include <kernel/lib/stdlib.h> #include <kernel/paging/paging.h> -static const char __ITOA_TABLE[] = "0123456789"; +static const char ITOA_TABLE[] = "0123456789"; char *itoa(int n) { @@ -27,7 +27,7 @@ char *itoa(int n) for (int i = 0; i < sz; i++) { int digit = (n % pow(10, i + 1)) / pow(10, i); - ret[i] = __ITOA_TABLE[digit]; + ret[i] = ITOA_TABLE[digit]; } ret[sz] = 0; |