aboutsummaryrefslogtreecommitdiff
path: root/src/zebra.c
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2018-12-03 10:18:20 -0600
committertlatorre <tlatorre@uchicago.edu>2018-12-03 10:18:20 -0600
commit05b1b58938c9ca1518895efb7a4d962256b35a67 (patch)
tree0a72d4dd223ed20b3610d71c9b5cdb76dc694b56 /src/zebra.c
parent7e7614fbc9ad0f6cb3e65912134069082109fd6e (diff)
downloadsddm-05b1b58938c9ca1518895efb7a4d962256b35a67.tar.gz
sddm-05b1b58938c9ca1518895efb7a4d962256b35a67.tar.bz2
sddm-05b1b58938c9ca1518895efb7a4d962256b35a67.zip
fix test-zebra
Diffstat (limited to 'src/zebra.c')
-rw-r--r--src/zebra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zebra.c b/src/zebra.c
index aacf1ef..4ce51a2 100644
--- a/src/zebra.c
+++ b/src/zebra.c
@@ -13,7 +13,7 @@ zebraFile *zebra_open(const char *filename)
FILE *f = fopen(filename, "r");
if (!f) {
- sprintf(zebra_err, "failed to open '%s': %s\n", filename, strerror(errno));
+ sprintf(zebra_err, "failed to open '%s': %s", filename, strerror(errno));
return NULL;
}