diff options
author | Gerard van Dongen <vdongen@users.sourceforge.net> | 2004-05-29 08:04:56 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:08:21 +0200 |
commit | 35a3b5acb916a03d8d1821b8e370a5cc3615a2b9 (patch) | |
tree | 5a3da2f0f28a18dda088e1381911f6f2b75f9403 /ff | |
parent | ccda2c902e1ec7b8686c64cf3777322bff61c75b (diff) |
fixed typo in conditional expression
svn path=/trunk/externals/ff/; revision=1786
Diffstat (limited to 'ff')
-rw-r--r-- | ff/ff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |