diff options
| author | Benoit Germain <bnt.germain@gmail.com> | 2017-06-05 11:29:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-05 11:29:36 +0200 |
| commit | 0371c1f79d0fae90f77eee4c911e54245bd3468c (patch) | |
| tree | b2a7562338936d70f61afbaec71b7e4aeddd1a8f | |
| parent | 972ed7d61c0d00b4a8d3c6b9f67143a4c26a77ec (diff) | |
| parent | a836a945657f4597c878925d59133fb90412593d (diff) | |
| download | lanes-0371c1f79d0fae90f77eee4c911e54245bd3468c.tar.gz lanes-0371c1f79d0fae90f77eee4c911e54245bd3468c.tar.bz2 lanes-0371c1f79d0fae90f77eee4c911e54245bd3468c.zip | |
Merge pull request #126 from aidanholm/master
Fix build with USE_DEBUG_SPEW
| -rw-r--r-- | src/tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools.c b/src/tools.c index a4d781f..c2491ba 100644 --- a/src/tools.c +++ b/src/tools.c | |||
| @@ -236,7 +236,7 @@ static void open1lib( struct s_Universe* U, lua_State* L, char const* name_, siz | |||
| 236 | if( libfunc != NULL) | 236 | if( libfunc != NULL) |
| 237 | { | 237 | { |
| 238 | bool_t const isLanesCore = (libfunc == require_lanes_core) ? TRUE : FALSE; // don't want to create a global for "lanes.core" | 238 | bool_t const isLanesCore = (libfunc == require_lanes_core) ? TRUE : FALSE; // don't want to create a global for "lanes.core" |
| 239 | DEBUGSPEW_CODE( fprintf( stderr, INDENT_BEGIN "opening %.*s library\n" INDENT_END, len_, name_)); | 239 | DEBUGSPEW_CODE( fprintf( stderr, INDENT_BEGIN "opening %.*s library\n" INDENT_END, (int) len_, name_)); |
| 240 | STACK_CHECK( L); | 240 | STACK_CHECK( L); |
| 241 | if( isLanesCore == TRUE) | 241 | if( isLanesCore == TRUE) |
| 242 | { | 242 | { |
