Merge pull request #441 from okuoku/patch-main

main: Silence warning with !SEXP_USE_GREEN_THREADS
This commit is contained in:
Alex Shinn 2017-11-13 22:08:36 +09:00 committed by GitHub
commit afcae50d26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
main.c
View file

@ -94,7 +94,7 @@ static void sexp_make_unblocking (sexp ctx, sexp port) {
sexp_port_flags(port) |= O_NONBLOCK; sexp_port_flags(port) |= O_NONBLOCK;
} }
#else #else
#define sexp_make_unblocking(ctx, port) 0 #define sexp_make_unblocking(ctx, port) (void)0
#endif #endif
static sexp sexp_meta_env (sexp ctx) { static sexp sexp_meta_env (sexp ctx) {