diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-06-17 11:52:56 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-06-17 11:52:56 -0400 |
commit | e66c26b216b4b6b4c156149edcdd8629eedc2974 (patch) | |
tree | a3633f2881fd06b9aeb9243d5115360039de613f /src/c/urweb.c | |
parent | 8a0782976c0c8da839876166013b84756dae493a (diff) |
Fixes to work nicely with OS X and Clang (thanks to Austin Seipp)
Diffstat (limited to 'src/c/urweb.c')
-rw-r--r-- | src/c/urweb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c index 3213d044..b653390a 100644 --- a/src/c/urweb.c +++ b/src/c/urweb.c @@ -829,7 +829,7 @@ static input *check_input_space(uw_context ctx, size_t len) { r = &ctx->subinputs[ctx->used_subinputs]; for (i = 0; i < len; ++i) - ctx->subinputs[ctx->used_subinputs++].kind = UNUSED; + ctx->subinputs[ctx->used_subinputs++].kind = UNSET; return r; } |