mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
Fix warning better.
git-svn-id: svn://localhost/ardour2/branches/3.0@8267 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7961e34fc2
commit
bb92cf3b24
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue