summaryrefslogtreecommitdiff
path: root/sponge.c
diff options
context:
space:
mode:
Diffstat (limited to 'sponge.c')
-rw-r--r--sponge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sponge.c b/sponge.c
index 09d3971..f852ad5 100644
--- a/sponge.c
+++ b/sponge.c
@@ -372,7 +372,7 @@ int main (int argc, char **argv) {
}
else {
/* Fall back to slow copy. */
- outfile = fopen(outname, append ? "a" : "w");
+ outfile = fopen(outname, "w");
if (!outfile) {
perror("error opening output file");
exit(1);