mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
Fix a dumb in buffer_putch.
This commit is contained in:
parent
9aa88fe186
commit
8ff394f83f
Notes:
sideshowbarker
2024-07-19 18:46:48 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/8ff394f83f3
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ int kprintf(const char* fmt, ...)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static void buffer_putch(char* bufptr, char ch)
|
||||
static void buffer_putch(char*& bufptr, char ch)
|
||||
{
|
||||
*bufptr++ = ch;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue