13
0

Fix warning.

git-svn-id: svn://localhost/ardour2/branches/3.0@8266 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-12-14 03:06:53 +00:00
parent eb5870781a
commit 7961e34fc2

View 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", strerror(errno));
return NULL;
}