diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-12-14 06:50:43 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-12-14 06:50:43 +0000 |
commit | dbaefe66fe24bd09d20b5aa7dd96eb1a30a2d8c3 (patch) | |
tree | 9a4d769804c389b6b03bbfdf65e8e0a03288c8e8 /configure | |
parent | 14629756b5ad406d295e6d971de5c3e5330bec30 (diff) | |
download | ruby-dbaefe66fe24bd09d20b5aa7dd96eb1a30a2d8c3.tar.gz ruby-dbaefe66fe24bd09d20b5aa7dd96eb1a30a2d8c3.tar.xz ruby-dbaefe66fe24bd09d20b5aa7dd96eb1a30a2d8c3.zip |
19991214
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure')
-rw-r--r-- | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3783,7 +3783,7 @@ else int main() { - if (-1==(-1>>(unsigned)1)) + if (-1==(-1>>1)) return 0; return 1; } @@ -3806,7 +3806,7 @@ fi echo "$ac_t""$rb_cv_rshift_sign" 1>&6 if test "$rb_cv_rshift_sign" = yes; then cat >> confdefs.h <<\EOF -#define RSHIFT(x,y) ((x)>>y) +#define RSHIFT(x,y) ((x)>>(int)y) EOF else |