Index: db.h =================================================================== RCS file: /local/master/tinymush/src/db.h,v retrieving revision 1.47 retrieving revision 1.48 diff -c -r1.47 -r1.48 *** db.h 2002/06/20 08:56:31 1.47 --- db.h 2002/07/25 14:12:46 1.48 *************** *** 1,5 **** /* db.h */ ! /* $Id: db.h,v 1.47 2002/06/20 08:56:31 lwl Exp $ */ #include "copyright.h" --- 1,5 ---- /* db.h */ ! /* $Id: db.h,v 1.48 2002/07/25 14:12:46 rmg Exp $ */ #include "copyright.h" *************** *** 13,21 **** /* Macros to help deal with batch writes of attribute numbers and objects */ #define ATRNUM_BLOCK_SIZE (int) ((mudstate.db_block_size - 32) / \ ! (sizeof (int) + VNAME_SIZE)) #define ATRNUM_BLOCK_BYTES (int) ((ATRNUM_BLOCK_SIZE) * \ ! (sizeof (int) + VNAME_SIZE)) #define OBJECT_BLOCK_SIZE (int) ((mudstate.db_block_size - 32) / \ (sizeof(int) + sizeof(DUMPOBJ))) #define OBJECT_BLOCK_BYTES (int) ((OBJECT_BLOCK_SIZE) * \ --- 13,21 ---- /* Macros to help deal with batch writes of attribute numbers and objects */ #define ATRNUM_BLOCK_SIZE (int) ((mudstate.db_block_size - 32) / \ ! (2 * sizeof (int) + VNAME_SIZE)) #define ATRNUM_BLOCK_BYTES (int) ((ATRNUM_BLOCK_SIZE) * \ ! (2 * sizeof (int) + VNAME_SIZE)) #define OBJECT_BLOCK_SIZE (int) ((mudstate.db_block_size - 32) / \ (sizeof(int) + sizeof(DUMPOBJ))) #define OBJECT_BLOCK_BYTES (int) ((OBJECT_BLOCK_SIZE) * \