Clean up journal_open() to open the journal write-only

We don't actually need update mode.
This commit is contained in:
Markus Armbruster 2011-11-26 20:25:04 +01:00
parent 421907fcb8
commit 213501cabb

View file

@ -75,7 +75,7 @@ static void journal_output_start(struct player *, int);
static FILE * static FILE *
journal_open(void) journal_open(void)
{ {
return fopen(journal_fname, "a+"); return fopen(journal_fname, "a");
} }
static void static void