From 3238ced93283a167675f20244ec9fd6310eb8002 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 2 Oct 2019 20:01:17 +0200 Subject: Finally fixed VESA auto resolution finder This was quite hard and strange but it works now! --- src/kernel/lib/lib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/lib/lib.h') diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h index d6cc09e..0292cc3 100644 --- a/src/kernel/lib/lib.h +++ b/src/kernel/lib/lib.h @@ -65,8 +65,8 @@ int memory_compare(const void *a_ptr, const void *b_ptr, size_t size); * Convert an int into a string * @param i The integer which should be converted * @param b The converted int as string - * @return The converted string (b) + * @param base The desired base */ -char *itoa(int i, char b[]); +void *itoa(int i, char *b, int base); #endif -- cgit v1.2.3