summaryrefslogtreecommitdiffstats
path: root/lib/itoa.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-08-17 14:16:55 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-08-17 14:16:55 -0400
commit7ee9347560768641096df68c545ac085a20233e4 (patch)
tree5b567f2e98cd9e6aeee33eeecd7fbf6f2fafdeab /lib/itoa.c
parentf466364b8a3858e7b3f19258d142851cb4a7e6d6 (diff)
downloadjove-kernel-7ee9347560768641096df68c545ac085a20233e4.tar.gz
jove-kernel-7ee9347560768641096df68c545ac085a20233e4.tar.bz2
jove-kernel-7ee9347560768641096df68c545ac085a20233e4.zip
working usermode pager. fix usermode interrupts
Diffstat (limited to 'lib/itoa.c')
-rw-r--r--lib/itoa.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/itoa.c b/lib/itoa.c
index 57f0c22..722c610 100644
--- a/lib/itoa.c
+++ b/lib/itoa.c
@@ -8,7 +8,6 @@ ltostr(char *s, int size, unsigned long l, bool sign, int radix)
if((long)l < 0 && sign) {
l = -((long)l);
if(size > wsize && s != 0) s[wsize] = '-';
- wsize++;
}
for(unsigned long lv = l; lv != 0; lv /= radix) {