From da3cdd2ddf9cabc4f50ee7461c04a24333c4eb34 Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 18 Jun 2010 01:44:52 +0000 Subject: * gc.c (gc_lazy_sweep): clean a warning. "suggest parentheses around assignment used as truth value" * transcode_data.h (getGB4bt1): clean a warning. "suggest parentheses around arithmetic in operand of |" * transcode_data.h (getGB4bt3): ditto. * vm.c (thread_free): clean a warning. "format 'p' expects type 'void *', but argument 3 has type 'struct rb_mutex_struct *'" git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28359 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- transcode_data.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'transcode_data.h') diff --git a/transcode_data.h b/transcode_data.h index 61146d2c83..d0f3d0f764 100644 --- a/transcode_data.h +++ b/transcode_data.h @@ -56,9 +56,9 @@ #define getBT0(a) (((unsigned char)((a)>> 5)&0x07)|0xF0) /* for UTF-8 only!!! */ #define getGB4bt0(a) ((unsigned char)((a)>> 8)) -#define getGB4bt1(a) ((unsigned char)((a)>>24)&0x0F|0x30) +#define getGB4bt1(a) (((unsigned char)((a)>>24)&0x0F)|0x30) #define getGB4bt2(a) ((unsigned char)((a)>>16)) -#define getGB4bt3(a) ((unsigned char)((a)>>28)&0x0F|0x30) +#define getGB4bt3(a) (((unsigned char)((a)>>28)&0x0F)|0x30) #define o2FUNii(b1,b2) (PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|FUNii)) -- cgit v1.2.3