mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
Fix string end handling in strzappendchar
This commit is contained in:
parent
ffe79a214d
commit
939431aaf9
@ -12,7 +12,7 @@ void strzappend(pointer buffer, pointer str) {
|
||||
void strzappendchar(pointer buffer, byte char) {
|
||||
buffer += strzlen(buffer)
|
||||
buffer[0] = char
|
||||
buffer[1] = 0
|
||||
buffer[1] = nullchar
|
||||
}
|
||||
|
||||
word strz2word(pointer str) {
|
||||
|
Loading…
Reference in New Issue
Block a user