From 78469da1b0554ccca9578242f54114770827c46e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 10 Aug 2012 23:09:54 +0000 Subject: Fix a ton of warnings. git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4648 a436a847-0d15-0410-975c-d299462d15a1 --- src/mdaCombo.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mdaCombo.cpp') diff --git a/src/mdaCombo.cpp b/src/mdaCombo.cpp index 69c8401..559c7ff 100644 --- a/src/mdaCombo.cpp +++ b/src/mdaCombo.cpp @@ -222,8 +222,7 @@ void mdaCombo::getParameterName(int32_t index, char *label) } #include -void int2strng(int32_t value, char *string) { sprintf(string, "%d", value); } -void float2strng(float value, char *string) { sprintf(string, "%.2f", value); } +static void int2strng(int32_t value, char *string) { sprintf(string, "%d", value); } void mdaCombo::getParameterDisplay(int32_t index, char *text) { -- cgit v1.2.1