summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-12-14 03:06:53 +0000
committerCarl Hetherington <carl@carlh.net>2010-12-14 03:06:53 +0000
commit7961e34fc2fa8d8ed8f8926e0eef651824019eda (patch)
tree336ff152b794a17e9402d0d3aad76b7b2ae553d5 /libs
parenteb5870781a5173b1cbfc2dd4e975be29e5d00a99 (diff)
Fix warning.
git-svn-id: svn://localhost/ardour2/branches/3.0@8266 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/lv2_pfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/lv2_pfile.c b/libs/ardour/lv2_pfile.c
index 048b3b7891..6576de1ae8 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, strerror(errno));
+ fprintf(stderr, "%s", strerror(errno));
return NULL;
}