diff options
author | Marvin Borner | 2019-10-02 20:01:17 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-02 20:01:17 +0200 |
commit | 3238ced93283a167675f20244ec9fd6310eb8002 (patch) | |
tree | 288078ca30e9e4b5d5ba9a178315cb5ee9f6a2d8 /src/kernel/lib/lib.h | |
parent | 682c47a98844ffec3f3129160e9cdb98ba129989 (diff) |
Finally fixed VESA auto resolution finder
This was quite hard and strange but it works now!
Diffstat (limited to 'src/kernel/lib/lib.h')
-rw-r--r-- | src/kernel/lib/lib.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |