aboutsummaryrefslogtreecommitdiff
path: root/src/beat.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-01-16 02:01:21 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 13:53:22 +0200
commitc91ca99adfb0a87a9a5073bf2ef7ec44aecb9158 (patch)
tree373d6c658a7bea877bc20542cfcb573066cbfb24 /src/beat.c
parent5a7e7f61c9e5416c71ed4bfef74b09f0a5a556ef (diff)
fixed a few warnings
svn path=/trunk/externals/maxlib/; revision=4411
Diffstat (limited to 'src/beat.c')
-rw-r--r--src/beat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/beat.c b/src/beat.c
index 0dec647..a2f565e 100644
--- a/src/beat.c
+++ b/src/beat.c
@@ -131,7 +131,7 @@ static int beat_evaluate(t_beat *x)
for(i = 1; i < 6; i++)
{
sortp = &(theories[BEAT_LONG - i]);
- sprintf(info, " %4d[%3d]", sortp->theory, sortp->points);
+ sprintf(info, " %4d[%3d]", (int) sortp->theory, (int) sortp->points);
strcat(string, info);
}
sprintf(info, " %g %g", clock_getlogicaltime(), x->x_beatexpect);