some LV2 debug tracing
[ardour.git] / libs / ardour / lv2_pfile.c
index 048b3b7891e91b44bf06cb4c2ce9ee20fb9fae5b..f5c1c02a78043dd72afa538adeb9b1ea3df32ae8 100644 (file)
@@ -34,7 +34,7 @@ lv2_pfile_open(const char* path, bool write)
 {
        FILE* fd = fopen(path, (write ? "w" : "r"));
        if (!fd) {
-               fprintf(stderr, strerror(errno));
+               fprintf(stderr, "%s\n", strerror(errno));
                return NULL;
        }