diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-25 13:57:01 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-25 13:57:01 +0000 |
commit | b134b912780e0fd84fbc107a9362e45f04391b47 (patch) | |
tree | 3aad53ec0421149c8fb9e163379bba8efb2ab42e /pack.c | |
parent | 4ec25bdd63c8cb9acf70880666c1d113ae0cb51e (diff) |
* various files: macro fix-up by Michal Rokos.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'pack.c')
-rw-r--r-- | pack.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1046,12 +1046,11 @@ hex2num(c) PACK_LENGTH_ADJUST_SIZE(t__len); \ } while (0) #else -#define PACK_LENGTH_ADJUST(type,sz) do { \ - PACK_LENGTH_ADJUST_SIZE(sizeof(type)); \ -} while (0) +#define PACK_LENGTH_ADJUST(type,sz) \ + PACK_LENGTH_ADJUST_SIZE(sizeof(type)) #endif -#define PACK_ITEM_ADJUST() while (tmp--) rb_ary_push(ary, Qnil); +#define PACK_ITEM_ADJUST() while (tmp--) rb_ary_push(ary, Qnil) static VALUE pack_unpack(str, fmt) |