diff options
| author | Benoit Germain <bnt.germain@gmail.com> | 2013-11-06 14:50:26 +0100 |
|---|---|---|
| committer | Benoit Germain <bnt.germain@gmail.com> | 2013-11-06 14:50:26 +0100 |
| commit | eaddcb6d4121be17cddb06815e67223a7c1e716e (patch) | |
| tree | ef543c491a87afcca136199cd5168ef8bb3ae95e | |
| parent | 57d7929c48bd3be9c1723b673e24a1222dce4588 (diff) | |
| download | lanes-eaddcb6d4121be17cddb06815e67223a7c1e716e.tar.gz lanes-eaddcb6d4121be17cddb06815e67223a7c1e716e.tar.bz2 lanes-eaddcb6d4121be17cddb06815e67223a7c1e716e.zip | |
Fix a compilation warning about an uninitialized variable (but this is harmless)
| -rw-r--r-- | src/lanes.c | 1 |
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); |
