diff options
| author | Benoit Germain <bnt.germain@gmail.com> | 2011-03-01 21:21:56 +0100 |
|---|---|---|
| committer | Benoit Germain <bnt.germain@gmail.com> | 2011-03-01 21:21:56 +0100 |
| commit | f213d882054417835d98314bae2e14a334cb9a04 (patch) | |
| tree | f27f534bc5b5f3753518b44bd5da84f27d427a6b /src | |
| parent | e97adefde985e30fe31ffa036c74ffb0ce10ca26 (diff) | |
| download | lanes-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')
| -rw-r--r-- | src/lanes.c | 2 |
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 | // |
| 1659 | static char const * const thread_status_string( struct s_lane *s) | 1659 | static 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; |
