diff options
| author | Masaki Muranaka <[email protected]> | 2013-03-16 16:58:14 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2013-03-16 16:58:14 +0900 |
| commit | 591dbbf13f51b6135e06f37773bc8d7dd51ac524 (patch) | |
| tree | 0e1d6b158363cbd0c45b2370efaa69298ee67332 /include | |
| parent | 2e937a5bba696ce851178f89af1abe9d7f2bcbc2 (diff) | |
| download | mruby-591dbbf13f51b6135e06f37773bc8d7dd51ac524.tar.gz mruby-591dbbf13f51b6135e06f37773bc8d7dd51ac524.zip | |
Change the place of the close parenthesis. Even though it probably cause no bugs for current code.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/khash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/khash.h b/include/mruby/khash.h index 9eddc0bb3..96c48d294 100644 --- a/include/mruby/khash.h +++ b/include/mruby/khash.h @@ -22,7 +22,7 @@ typedef khint_t khiter_t; #endif #define KHASH_MIN_SIZE 8 -#define UPPER_BOUND(x) ((x)>>2|(x>>1)) +#define UPPER_BOUND(x) ((x)>>2|(x)>>1) //extern uint8_t __m[]; |
