aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2013-11-06 14:50:26 +0100
committerBenoit Germain <bnt.germain@gmail.com>2013-11-06 14:50:26 +0100
commiteaddcb6d4121be17cddb06815e67223a7c1e716e (patch)
treeef543c491a87afcca136199cd5168ef8bb3ae95e /src
parent57d7929c48bd3be9c1723b673e24a1222dce4588 (diff)
downloadlanes-eaddcb6d4121be17cddb06815e67223a7c1e716e.tar.gz
lanes-eaddcb6d4121be17cddb06815e67223a7c1e716e.tar.bz2
lanes-eaddcb6d4121be17cddb06815e67223a7c1e716e.zip
Fix a compilation warning about an uninitialized variable (but this is harmless)
Diffstat (limited to 'src')
-rw-r--r--src/lanes.c1
1 files changed, 1 insertions, 0 deletions
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)
428 pushed = keeper_call( KL, KEEPER_API( send), L, linda, key_i); 428 pushed = keeper_call( KL, KEEPER_API( send), L, linda, key_i);
429 if( pushed < 0) 429 if( pushed < 0)
430 { 430 {
431 ret = FALSE;
431 break; 432 break;
432 } 433 }
433 ASSERT_L( pushed == 1); 434 ASSERT_L( pushed == 1);