13
0

Fix warning better.

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

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, "%s", strerror(errno));
fprintf(stderr, "%s\n", strerror(errno));
return NULL;
}