Clean up journal_open() to open the journal write-only
We don't actually need update mode.
This commit is contained in:
parent
421907fcb8
commit
213501cabb
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ static void journal_output_start(struct player *, int);
|
|||
static FILE *
|
||||
journal_open(void)
|
||||
{
|
||||
return fopen(journal_fname, "a+");
|
||||
return fopen(journal_fname, "a");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue