13
0

use g_fopen()

git-svn-id: svn://localhost/ardour2/branches/3.0@11667 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-03-13 20:14:01 +00:00
parent 7149ca74e6
commit d0b90d2961

View File

@ -203,10 +203,10 @@ vstfx_infofile_for_read (char* dllpath)
if (sys_info) {
if (own_statbuf.st_mtime <= sys_statbuf.st_mtime) {
/* system info file is newer, use it */
return fopen (sys_info, "r");
return g_fopen (sys_info, "rb");
}
} else {
return fopen (own_info, "r");
return g_fopen (own_info, "rb");
}
}