diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/ByteLoader/bytecode.h | 1 | ||||
-rw-r--r-- | ext/DB_File/DB_File.xs | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/ext/ByteLoader/bytecode.h b/ext/ByteLoader/bytecode.h index c6acd28436..9ad3237a3e 100644 --- a/ext/ByteLoader/bytecode.h +++ b/ext/ByteLoader/bytecode.h @@ -74,7 +74,6 @@ typedef IV IV64; #define BGET_op_tr_array(arg) do { \ unsigned short *ary; \ - int i; \ New(666, ary, 256, unsigned short); \ BGET_FREAD(ary, sizeof(unsigned short), 256); \ arg = (char *) ary; \ diff --git a/ext/DB_File/DB_File.xs b/ext/DB_File/DB_File.xs index 74cbd1b7cc..f84f55069c 100644 --- a/ext/DB_File/DB_File.xs +++ b/ext/DB_File/DB_File.xs @@ -1768,7 +1768,6 @@ unshift(db, ...) DBT value ; int i ; int One ; - DB * Db = db->dbp ; STRLEN n_a; DBT_clear(key) ; @@ -1791,7 +1790,7 @@ unshift(db, ...) #ifdef DB_VERSION_MAJOR RETVAL = (db->cursor->c_put)(db->cursor, &key, &value, DB_BEFORE) ; #else - RETVAL = (Db->put)(Db, &key, &value, R_IBEFORE) ; + RETVAL = (db->dbp->put)(db->dbp, &key, &value, R_IBEFORE) ; #endif if (RETVAL != 0) break; |