aboutsummaryrefslogtreecommitdiff
path: root/pianoroll.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-06-03 18:32:13 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:23:30 +0200
commit4af740ac0e286e6b44f8e8129d32f74bd6b1282d (patch)
treecc84626396ec608a89393914ecf86bb27bf5c2af /pianoroll.c
parentabdad952689c21d28683feff31b1fc6b6e2b1ce7 (diff)
logpost() really requires a format string
svn path=/trunk/externals/unauthorized/; revision=17472
Diffstat (limited to 'pianoroll.c')
-rw-r--r--pianoroll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pianoroll.c b/pianoroll.c
index 900b50a..f9d4a6b 100644
--- a/pianoroll.c
+++ b/pianoroll.c
@@ -793,7 +793,7 @@ static void pianoroll_free(t_pianoroll *x)
void pianoroll_setup(void)
{
- logpost(NULL, 4, pianoroll_version );
+ logpost(NULL, 4, "%s", pianoroll_version );
pianoroll_class = class_new(gensym("pianoroll"), (t_newmethod)pianoroll_new,
(t_method)pianoroll_free, sizeof(t_pianoroll), 0, A_GIMME, 0);
class_addmethod(pianoroll_class, (t_method)pianoroll_float, &s_float, A_FLOAT, 0);