commit 46873223980a0b4d7e517298b442c48f745934da
parent 99f0265d348e55c07acafb6ac92c17ae75f769a2
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Mon, 13 Jan 2020 14:14:25 +0100
tweaks: rewrap two lines, for consistency with similar lines
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/files.c b/src/files.c
@@ -214,8 +214,8 @@ int write_lockfile(const char *lockfilename, const char *origfilename, bool modi
filestream = fdopen(fd, "wb");
if (filestream == NULL) {
- statusline(MILD, _("Error writing lock file %s: %s"), lockfilename,
- strerror(errno));
+ statusline(MILD, _("Error writing lock file %s: %s"),
+ lockfilename, strerror(errno));
goto free_the_data;
}
@@ -281,8 +281,8 @@ int write_lockfile(const char *lockfilename, const char *origfilename, bool modi
int delete_lockfile(const char *lockfilename)
{
if (unlink(lockfilename) < 0 && errno != ENOENT) {
- statusline(MILD, _("Error deleting lock file %s: %s"), lockfilename,
- strerror(errno));
+ statusline(MILD, _("Error deleting lock file %s: %s"),
+ lockfilename, strerror(errno));
return -1;
}
return 1;