Skip to content

Commit

Permalink
Add a couple of missing semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
yallop committed Nov 25, 2016
1 parent 5f63bf8 commit bec7cbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ctypes/ldouble_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,13 +531,13 @@ CAMLprim value ctypes_ldouble_complex_neg(value a) {
#define FN1FAIL(OP) \
CAMLprim value ctypes_ldouble_complex_ ## OP (value a) { \
CAMLparam1(a); \
caml_failwith("ctypes: " #OP " does not exist on current platform") \
caml_failwith("ctypes: " #OP " does not exist on current platform"); \
}

#define FN2FAIL(OP) \
CAMLprim value ctypes_ldouble_complex_ ## OP (value a, value b) { \
CAMLparam2(a, b); \
caml_failwith("ctypes: " #OP " does not exist on current platform") \
caml_failwith("ctypes: " #OP " does not exist on current platform"); \
}

FN1(conjl)
Expand Down

0 comments on commit bec7cbc

Please sign in to comment.