diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-05-04 19:19:48 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-05-04 19:19:48 +0200 |
| commit | eb0bfa11826f8b23e9e08b53eee9edd8bba00a7b (patch) | |
| tree | b70fa8dcc1d0cdb9a609f063dc19428613c07c50 | |
| parent | Fix enjoin_jobs (diff) | |
| download | blind-eb0bfa11826f8b23e9e08b53eee9edd8bba00a7b.tar.gz blind-eb0bfa11826f8b23e9e08b53eee9edd8bba00a7b.tar.bz2 blind-eb0bfa11826f8b23e9e08b53eee9edd8bba00a7b.tar.xz | |
Fix error message
Signed-off-by: Mattias Andrée <maandree@kth.se>
| -rw-r--r-- | src/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream.c b/src/stream.c index 07d5f31..4bb0195 100644 --- a/src/stream.c +++ b/src/stream.c @@ -146,7 +146,7 @@ eninf_check_fd(int status, int fd, const char *file) if (fstat(fd, &st)) enprintf(status, "fstat %s:", file); if (S_ISREG(st.st_mode)) - enprintf(status, "%s is a regular file, refusing infinite write\n"); + enprintf(status, "%s is a regular file, refusing infinite write\n", file); } |
