aboutsummaryrefslogtreecommitdiff
path: root/ff
diff options
context:
space:
mode:
authorGerard van Dongen <vdongen@users.sourceforge.net>2004-05-29 08:04:56 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:08:21 +0200
commit35a3b5acb916a03d8d1821b8e370a5cc3615a2b9 (patch)
tree5a3da2f0f28a18dda088e1381911f6f2b75f9403 /ff
parentccda2c902e1ec7b8686c64cf3777322bff61c75b (diff)
fixed typo in conditional expression
svn path=/trunk/externals/ff/; revision=1786
Diffstat (limited to 'ff')
-rw-r--r--ff/ff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ff/ff.c b/ff/ff.c
index 20cbc4d..64a10d1 100644
--- a/ff/ff.c
+++ b/ff/ff.c
@@ -149,7 +149,7 @@ void ff_stop(t_ff *x)
perror("couldn't read status of effect");
}
- if (x->do_that.value = FF_STATUS_PLAYING) {
+ if (x->do_that.value == FF_STATUS_PLAYING) {
x->do_that.type = EV_FF;
x->do_that.code = x->effects.id;