aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.c
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2011-03-01 21:21:56 +0100
committerBenoit Germain <bnt.germain@gmail.com>2011-03-01 21:21:56 +0100
commitf213d882054417835d98314bae2e14a334cb9a04 (patch)
treef27f534bc5b5f3753518b44bd5da84f27d427a6b /src/lanes.c
parente97adefde985e30fe31ffa036c74ffb0ce10ca26 (diff)
downloadlanes-f213d882054417835d98314bae2e14a334cb9a04.tar.gz
lanes-f213d882054417835d98314bae2e14a334cb9a04.tar.bz2
lanes-f213d882054417835d98314bae2e14a334cb9a04.zip
Just a small fix necessary because -Werror is used and GCC 4.2 on OS X complains.
Diffstat (limited to 'src/lanes.c')
-rw-r--r--src/lanes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lanes.c b/src/lanes.c
index e5a2987..c46130f 100644
--- a/src/lanes.c
+++ b/src/lanes.c
@@ -1656,7 +1656,7 @@ LUAG_FUNC( thread_cancel)
1656// / "error" finished at an error, error value is there 1656// / "error" finished at an error, error value is there
1657// / "cancelled" execution cancelled by M (state gone) 1657// / "cancelled" execution cancelled by M (state gone)
1658// 1658//
1659static char const * const thread_status_string( struct s_lane *s) 1659static char const * thread_status_string( struct s_lane *s)
1660{ 1660{
1661 enum e_status st = s->status; // read just once (volatile) 1661 enum e_status st = s->status; // read just once (volatile)
1662 char const * str; 1662 char const * str;