syscall: don't append '\n' to the output

This commit is contained in:
kvik 2020-09-16 13:18:43 +02:00
parent 58861fff63
commit be876a06ac

View file

@ -131,7 +131,7 @@ main(int argc, char *argv[])
fprint(2, "syscall: return %lld, no error\n", r);
}
if(oflag)
print("%s\n", buf);
print("%s", buf);
if(xflag){
for(j=0; j<r; j++){
if(j%16 == 0)