mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00: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: 8ff394f83f
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…
Add table
Add a link
Reference in a new issue