summaryrefslogtreecommitdiff
path: root/src/common/db.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-02-20 19:09:50 +0100
committerHaru <haru@dotalux.com>2016-03-20 18:32:08 +0100
commitddbaad9bbab30490a6b23ef74203f30d290aa17c (patch)
treef9b360a2dcabc68a2df1a20c79413298d384e60c /src/common/db.h
parentc6d056f106386523812cfa3d271c5a67d8e2a596 (diff)
downloadhercules-ddbaad9bbab30490a6b23ef74203f30d290aa17c.tar.gz
hercules-ddbaad9bbab30490a6b23ef74203f30d290aa17c.tar.bz2
hercules-ddbaad9bbab30490a6b23ef74203f30d290aa17c.tar.xz
hercules-ddbaad9bbab30490a6b23ef74203f30d290aa17c.zip
Added separate char* and const char* data types to union DBKey
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/db.h')
-rw-r--r--src/common/db.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/db.h b/src/common/db.h
index 60b5b32ac..d7d111c86 100644
--- a/src/common/db.h
+++ b/src/common/db.h
@@ -170,6 +170,7 @@ union DBKey {
int i;
unsigned int ui;
const char *str;
+ char *mutstr;
int64 i64;
uint64 ui64;
};