summaryrefslogtreecommitdiff
path: root/src/rhythm.c
diff options
context:
space:
mode:
authorDebian Multimedia Maintainers <debian-multimedia@lists.debian.org>2023-07-03 09:04:11 +0200
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>2023-07-05 15:17:12 +0200
commit8ce1c4b918518b5f1e367ee7a1ddc0be7ffb3e32 (patch)
treef6174aa33aa9aa5d27048de55712528c94a0e63b /src/rhythm.c
parent4deed55cb77e419017890da1c4425fb1d910ae42 (diff)
fixed format-security errors
Forwarded: https://github.com/electrickery/pd-maxlib/pull/2 Last-Update: 2023-07-03 Gbp-Pq: Name fix-format.patch
Diffstat (limited to 'src/rhythm.c')
-rw-r--r--src/rhythm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rhythm.c b/src/rhythm.c
index 774f07d..f2b7508 100644
--- a/src/rhythm.c
+++ b/src/rhythm.c
@@ -325,7 +325,7 @@ void rhythm_setup(void)
class_addmethod(rhythm_class, (t_method)rhythm_reset, gensym("reset"), 0);
class_addmethod(rhythm_class, (t_method)rhythm_print, gensym("print"), 0);
- logpost(NULL, 4, version);
+ logpost(NULL, 4, "%s", version);
}
#else
void maxlib_rhythm_setup(void)