diff --git a/src/xc.c b/src/xc.c index 207f328..4af5407 100644 --- a/src/xc.c +++ b/src/xc.c @@ -746,7 +746,7 @@ void printlines(char* str, int lineA, int lineB) { if ((i + strsz) > strlng) return; } - bzero(buffer, 1024); + memset(buffer, 0, sizeof(buffer)); memmove(buffer, &str[i], strsz); printf("%s\n", buffer); lastLinePrint = line;