diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-07 17:27:59 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-07 17:27:59 -0400 |
commit | 4371343a54b4aa3ee7db3061f6dc6326601598ea (patch) | |
tree | 9c31fa4eb09bdc2dbd525d9a9132c35e089140ee /src/css.hh | |
parent | 3fcda5bb5eb5725d30f14d04bd1de3579731168e (diff) |
Added parenthesis to math expression
Diffstat (limited to 'src/css.hh')
-rw-r--r-- | src/css.hh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ typedef enum { inline CssLength CSS_CREATE_LENGTH (float v, CssLengthType t) { static const int CSS_LENGTH_FRAC_MAX = (1 << (32 - 15 - 1)) - 1; - static const int CSS_LENGTH_INT_MAX = 1 << (32 - 4) - 1; + static const int CSS_LENGTH_INT_MAX = (1 << (32 - 4)) - 1; int iv; switch (t) { |