summaryrefslogtreecommitdiff
path: root/src/common/strlib.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-05-15 22:08:14 -0300
committershennetsind <ind@henn.et>2013-05-15 22:08:14 -0300
commit84cd1ff926e99abd3689729fb008f2bd020ccba1 (patch)
treeb4db570f355b3bb8208c9ed0864503101b8f1b08 /src/common/strlib.c
parentc7f3f6c2ceae862866a019d0a438d8f965b042c2 (diff)
downloadhercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.tar.gz
hercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.tar.bz2
hercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.tar.xz
hercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.zip
Fixed Bug #7246
http://hercules.ws/board/tracker/issue-7246-compiling-in-vstudio/ Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/strlib.c')
-rw-r--r--src/common/strlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/strlib.c b/src/common/strlib.c
index 278542a24..686b2e47d 100644
--- a/src/common/strlib.c
+++ b/src/common/strlib.c
@@ -991,7 +991,7 @@ bool sv_readdb(const char* directory, const char* filename, char delim, int minc
// @author MouseJstr (original)
/// Allocates a StringBuf
-StringBuf* StringBuf_Malloc() {
+StringBuf* StringBuf_Malloc(void) {
StringBuf* self;
CREATE(self, StringBuf, 1);
StrBuf->Init(self);