From d685bc3451b489132858c38b308517d0d846602f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 26 Jul 2006 19:40:30 +0000 Subject: Fixed unterminated varargs error git-svn-id: http://svn.drobilla.net/lad/libslv2@106 a436a847-0d15-0410-975c-d299462d15a1 --- src/pluginlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluginlist.c b/src/pluginlist.c index 45d71f9..2879e53 100644 --- a/src/pluginlist.c +++ b/src/pluginlist.c @@ -62,7 +62,7 @@ slv2_list_load_all(SLV2List list) } else { const char* const home = getenv("HOME"); const char* const suffix = "/.lv2:/usr/local/lib/lv2:usr/lib/lv2"; - slv2_path = strjoin(home, suffix); + slv2_path = strjoin(home, suffix, NULL); printf("$LV2_PATH is unset. Using default path %s\n", slv2_path); slv2_list_load_path(list, slv2_path); -- cgit v1.2.1