Merge pull request #763 from lubgr/fix-unused-variable-warning

Triviality: silence an unused variable warning in compiled test
This commit is contained in:
Alex Shinn 2021-07-25 22:24:24 +09:00 committed by GitHub
commit dd05444d91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ sexp sexp_apply_times_to_pi(sexp ctx, sexp self, sexp_sint_t n,
}
int main (int argc, char **argv) {
sexp ctx, res;
sexp ctx;
/* Create a context and load two modules with C types. */
ctx = sexp_make_eval_context(NULL, NULL, NULL, 0, 0);