diff options
Diffstat (limited to 'src/regint.h')
| -rw-r--r-- | src/regint.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regint.h b/src/regint.h index bf19eee1a..23e3a8c05 100644 --- a/src/regint.h +++ b/src/regint.h @@ -284,7 +284,7 @@ typedef unsigned int BitStatusType; ((n) < (int )BIT_STATUS_BITS_NUM ? ((stats) & (1 << n)) : ((stats) & 1)) #define BIT_STATUS_ON_AT(stats,n) do {\ - if ((n) < (int )BIT_STATUS_BITS_NUM) \ + if ((n) < (int )BIT_STATUS_BITS_NUM) \ (stats) |= (1 << (n));\ else\ (stats) |= 1;\ @@ -347,7 +347,7 @@ typedef Bits* BitSetRef; #define BITSET_CLEAR(bs) do {\ int i;\ - for (i = 0; i < (int )BITSET_SIZE; i++) { (bs)[i] = 0; } \ + for (i = 0; i < (int )BITSET_SIZE; i++) { (bs)[i] = 0; } \ } while (0) #define BS_ROOM(bs,pos) (bs)[pos / BITS_IN_ROOM] @@ -814,8 +814,8 @@ extern int onig_st_insert_strend(hash_table_type* table, const UChar* str_key, c /* encoding property management */ #define PROPERTY_LIST_ADD_PROP(Name, CR) \ r = onigenc_property_list_add_property((UChar* )Name, CR,\ - &PropertyNameTable, &PropertyList, &PropertyListNum,\ - &PropertyListSize);\ + &PropertyNameTable, &PropertyList, &PropertyListNum,\ + &PropertyListSize);\ if (r != 0) goto end #define PROPERTY_LIST_INIT_CHECK \ |
