diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-10-14 00:27:55 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-10-14 00:27:55 +0200 |
commit | f0789c07ccedf6f56a951c357c5d80710f4653d3 (patch) | |
tree | 2ff304535b37ab12263b9e3676ac0b46abe43bed | |
parent | b25243446244619ffa24405e9af93442d70c5ed7 (diff) | |
download | fetchmail-f0789c07ccedf6f56a951c357c5d80710f4653d3.tar.gz fetchmail-f0789c07ccedf6f56a951c357c5d80710f4653d3.tar.bz2 fetchmail-f0789c07ccedf6f56a951c357c5d80710f4653d3.zip |
Fixup missing argument in lock.c error message.
-rw-r--r-- | lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,7 +184,7 @@ void fm_lock_release(void) { if (unlink(lockfile)) { if (truncate(lockfile, (off_t)0)) { - report(stderr, GT_("fetchmail: cannot remove or truncate pidfile \"%s\": %s\n"), strerror(errno)); + report(stderr, GT_("fetchmail: cannot remove or truncate pidfile \"%s\": %s\n"), lockfile, strerror(errno)); } } } |