aboutsummaryrefslogtreecommitdiff
path: root/externals/grill
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2006-02-13 19:40:08 +0000
committerThomas Grill <xovo@users.sourceforge.net>2006-02-13 19:40:08 +0000
commit747ae8d1b06a041212ef1e0db9e1bd3eba4c278c (patch)
treeaba6ab8ee9eae20f0260b226d8bcc7c4bad0b576 /externals/grill
parent3fc18d3db73f03ed7a19df5368b5d68deef65fca (diff)
fixes for gcc 3.3, changing FLEXT_USECMEM to FLEXT_USE_CMEMw
avoid trying to send empty message bundles svn path=/trunk/; revision=4586
Diffstat (limited to 'externals/grill')
-rwxr-xr-xexternals/grill/flext/source/flqueue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flqueue.cpp b/externals/grill/flext/source/flqueue.cpp
index b1adfb24..13b45c5c 100755
--- a/externals/grill/flext/source/flqueue.cpp
+++ b/externals/grill/flext/source/flqueue.cpp
@@ -158,7 +158,7 @@ public:
// \note PD sys lock must already be held by caller
inline void Send() const
{
- FLEXT_ASSERT(msg.Ok());
+ if(!msg.Ok()) return; // Empty!
const Msg *m = &msg;
do {