mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Added const to log_open() prototype
This commit is contained in:
parent
755ac53553
commit
8fe74a7579
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@
|
||||||
static FILE *fp;
|
static FILE *fp;
|
||||||
static bool error = false;
|
static bool error = false;
|
||||||
|
|
||||||
void log_open(char *filename)
|
void log_open(const char *filename)
|
||||||
{
|
{
|
||||||
fp = fopen(filename, "w+");
|
fp = fopen(filename, "w+");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue