diff options
author | midipix <writeonce@midipix.org> | 2020-05-14 06:50:55 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-05-14 07:18:54 +0000 |
commit | ba22ee0406ef2e31c7b004b353ebc47812b45281 (patch) | |
tree | 4e3f09931fa12f911b981fcc47e7cfd628f63595 /src | |
parent | 162c9658ba799ee024c774fa8b1d613dc2c58cb5 (diff) | |
download | ntux-ba22ee0406ef2e31c7b004b353ebc47812b45281.tar.bz2 ntux-ba22ee0406ef2e31c7b004b353ebc47812b45281.tar.xz |
ntux_output_strerror(): pretty-printing: removed extra period.
Diffstat (limited to 'src')
-rw-r--r-- | src/output/ntux_output_error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/ntux_output_error.c b/src/output/ntux_output_error.c index be58ba1..5ed570a 100644 --- a/src/output/ntux_output_error.c +++ b/src/output/ntux_output_error.c @@ -71,7 +71,7 @@ static const char * ntux_output_strerror( return "(see child process error messages)"; else if (erri->esyscode == ENOBUFS) - return "input error: string length exceeds buffer size."; + return "input error: string length exceeds buffer size"; else return ntux_strerror(dctx,erri->esyscode); |