Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin D. Howard <gavin@gavinhoward.com>
  • Loading branch information
gavinhoward committed Mar 2, 2023
1 parent 9c2f45c commit 18c2901
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions include/library.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,17 +247,17 @@ typedef BcNum BclNum;
* is bad.
* @param c The context.
*/
#define BC_CHECK_CTXT(vm, c) \
do \
{ \
c = bcl_contextHelper(vm); \
if (BC_ERR(c == NULL)) \
{ \
BclNumber n_num; \
n_num.i = 0 - (size_t) BCL_ERROR_INVALID_CONTEXT; \
return n_num; \
} \
} \
#define BC_CHECK_CTXT(vm, c) \
do \
{ \
c = bcl_contextHelper(vm); \
if (BC_ERR(c == NULL)) \
{ \
BclNumber n_num_; \
n_num_.i = 0 - (size_t) BCL_ERROR_INVALID_CONTEXT; \
return n_num_; \
} \
} \
while (0)

/**
Expand Down

0 comments on commit 18c2901

Please sign in to comment.