Append instead of truncate.
This commit is contained in:
parent
cf51e84792
commit
068ed2ebf2
2
ts/ts.c
2
ts/ts.c
|
@ -55,7 +55,7 @@ int main(int argc, char **argv) {
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((fp = fopen(file, "w")) == NULL) {
|
if ((fp = fopen(file, "a")) == NULL) {
|
||||||
fprintf(stderr, "%s: cannot open %s: %s\n", argv[0], file, strerror(errno));
|
fprintf(stderr, "%s: cannot open %s: %s\n", argv[0], file, strerror(errno));
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue