From a7961f04cf7d74a3cada760908b364b0e4453690 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 5 Dec 2013 17:43:15 -0500 Subject: [PATCH] fix error in mingw version of realpath() --- libs/pbd/pathexpand.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/pathexpand.cc b/libs/pbd/pathexpand.cc index 4935297ea0..203bdcd069 100644 --- a/libs/pbd/pathexpand.cc +++ b/libs/pbd/pathexpand.cc @@ -71,7 +71,7 @@ realpath (const char *original_path, char resolved_path[_MAX_PATH+1]) rpath = _fullpath (temp, Glib::locale_from_utf8 (original_path).c_str(), _MAX_PATH); if (0 != rpath) { - snprintf (resolved_path, _MAX_PATH+1, Glib::locale_to_utf8 (temp).c_str()); + snprintf (resolved_path, _MAX_PATH+1, "%s", Glib::locale_to_utf8 (temp).c_str()); } }