From bb92cf3b2434fbeb547fb8df88ade0d1688ff823 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 14 Dec 2010 03:08:39 +0000 Subject: [PATCH] Fix warning better. git-svn-id: svn://localhost/ardour2/branches/3.0@8267 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/lv2_pfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/lv2_pfile.c b/libs/ardour/lv2_pfile.c index 6576de1ae8..f5c1c02a78 100644 --- a/libs/ardour/lv2_pfile.c +++ b/libs/ardour/lv2_pfile.c @@ -34,7 +34,7 @@ lv2_pfile_open(const char* path, bool write) { FILE* fd = fopen(path, (write ? "w" : "r")); if (!fd) { - fprintf(stderr, "%s", strerror(errno)); + fprintf(stderr, "%s\n", strerror(errno)); return NULL; }