From eaddcb6d4121be17cddb06815e67223a7c1e716e Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Wed, 6 Nov 2013 14:50:26 +0100 Subject: Fix a compilation warning about an uninitialized variable (but this is harmless) --- src/lanes.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lanes.c b/src/lanes.c index 1c65614..b383b40 100644 --- a/src/lanes.c +++ b/src/lanes.c @@ -428,6 +428,7 @@ LUAG_FUNC( linda_send) pushed = keeper_call( KL, KEEPER_API( send), L, linda, key_i); if( pushed < 0) { + ret = FALSE; break; } ASSERT_L( pushed == 1); -- cgit v1.2.3-55-g6feb