Changed enum initialization from weird bit operation to plain number

This commit is contained in:
Ivan Skytte Jørgensen
2016-03-19 18:29:12 +01:00
parent ab72e994d4
commit 827c90cc0a

@ -19,7 +19,7 @@ const char *mstrerror ( int errnum ) ;
//#define REMOTE_ERROR_BIT (0x40000000)
enum {
EDUMPFAILED = (0x00008000 | 0) , // tree dump failed 32768
EDUMPFAILED = 0x00008000 , // tree dump failed 32768
ETRYAGAIN , // try doing it again
ECLOSING , // can't add cuz we're closing the db
ENOTFOUND , // can't find in the db