aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero <k0ga@shike2.com>2012-09-04 20:31:21 +0200
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2012-09-04 20:31:21 +0200
commit684a6b59eee2c5dd6a58a003245e37dcaf520ff4 (patch)
treefc2ec7b5a68bb111a5a22694681d2b77a01fa6d0 /st.c
parent59eaf3ce56fef229681dc24912390cf9fc434119 (diff)
downloadst-684a6b59eee2c5dd6a58a003245e37dcaf520ff4.tar.gz
st-684a6b59eee2c5dd6a58a003245e37dcaf520ff4.tar.bz2
Add newline to stderr message
--- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 09b0262..586d124 100644
--- a/st.c
+++ b/st.c
@@ -784,7 +784,7 @@ ttynew(void) {
cmdfd = m;
signal(SIGCHLD, sigchld);
if (opt_io && !(fileio = fopen(opt_io, "w"))) {
- fprintf(stderr, "Error opening %s:%s",
+ fprintf(stderr, "Error opening %s:%s\n",
opt_io, strerror(errno));
}
}