Add newline to stderr message

---
 st.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
This commit is contained in:
Roberto E. Vargas Caballero 2012-09-04 20:31:21 +02:00
parent 1d6702024b
commit 66669a5585
1 changed files with 1 additions and 1 deletions

2
st.c
View File

@ -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));
}
}