mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/gdbm/gdbm.c: fix wrong arguments in GetDBM2 macro.
* ext/sdbm/init.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3caee48434
commit
faa9a862ef
3 changed files with 11 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Jul 13 17:31:51 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* ext/gdbm/gdbm.c: fix wrong arguments in GetDBM2 macro.
|
||||
* ext/sdbm/init.c: ditto.
|
||||
|
||||
Sun Jul 13 17:25:50 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* ext/dbm/dbm.c: fix wrong arguments in GetDBM2 macro by @v2e4lisp.
|
||||
|
|
|
@ -106,9 +106,9 @@ closed_dbm(void)
|
|||
if ((dbmp)->di_dbm == 0) closed_dbm();\
|
||||
} while (0)
|
||||
|
||||
#define GetDBM2(obj, data, dbm) do {\
|
||||
GetDBM((obj), (data));\
|
||||
(dbm) = dbmp->di_dbm;\
|
||||
#define GetDBM2(obj, dbmp, dbm) do {\
|
||||
GetDBM((obj), (dbmp));\
|
||||
(dbm) = (dbmp)->di_dbm; \
|
||||
} while (0)
|
||||
|
||||
static void
|
||||
|
|
|
@ -83,9 +83,9 @@ closed_sdbm()
|
|||
if ((dbmp)->di_dbm == 0) closed_sdbm();\
|
||||
} while (0)
|
||||
|
||||
#define GetDBM2(obj, data, dbm) do {\
|
||||
GetDBM((obj), (data));\
|
||||
(dbm) = dbmp->di_dbm;\
|
||||
#define GetDBM2(obj, dbmp, dbm) do {\
|
||||
GetDBM((obj), (dbmp));\
|
||||
(dbm) = (dbmp)->di_dbm; \
|
||||
} while (0)
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Reference in a new issue