diff options
author | Haru <haru@dotalux.com> | 2016-02-20 19:09:50 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-03-20 18:32:08 +0100 |
commit | ddbaad9bbab30490a6b23ef74203f30d290aa17c (patch) | |
tree | f9b360a2dcabc68a2df1a20c79413298d384e60c /src/common/db.h | |
parent | c6d056f106386523812cfa3d271c5a67d8e2a596 (diff) | |
download | hercules-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.h | 1 |
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; }; |