1
0
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:
Karol Stasiak 2019-10-31 12:29:25 +01:00
parent ffe79a214d
commit 939431aaf9

View File

@ -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) {