diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-07 19:45:24 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-07 19:45:24 +0000 |
commit | ee657a1fb7fa9b9f9f4d89bdaec4ef8544ccd739 (patch) | |
tree | fae0d7f7fd4be7e6e173e1eb0e2ccb48df40d7c5 /src/common/malloc.c | |
parent | e4b44bb0c6d412fe8d7e9f4877fe7f55356cb56d (diff) | |
download | hercules-ee657a1fb7fa9b9f9f4d89bdaec4ef8544ccd739.tar.gz hercules-ee657a1fb7fa9b9f9f4d89bdaec4ef8544ccd739.tar.bz2 hercules-ee657a1fb7fa9b9f9f4d89bdaec4ef8544ccd739.tar.xz hercules-ee657a1fb7fa9b9f9f4d89bdaec4ef8544ccd739.zip |
* Reverted r14563, due to multiple issues which render the source malfunctioning or uncompilable. To be redone later (bugreport:4627).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14567 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/malloc.c')
-rw-r--r-- | src/common/malloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/malloc.c b/src/common/malloc.c index 57300c18f..b566e689f 100644 --- a/src/common/malloc.c +++ b/src/common/malloc.c @@ -602,7 +602,7 @@ static void memmgr_final (void) char* ptr = (char *)head + sizeof(struct unit_head) - sizeof(long); #ifdef LOG_MEMMGR char buf[1024]; - snprintf (buf, sizeof buf, + sprintf (buf, "%04d : %s line %d size %lu address 0x%p\n", ++count, head->file, head->line, (unsigned long)head->size, ptr); memmgr_log (buf); @@ -619,7 +619,7 @@ static void memmgr_final (void) struct unit_head_large *large2; #ifdef LOG_MEMMGR char buf[1024]; - snprintf (buf, sizeof buf, + sprintf (buf, "%04d : %s line %d size %lu address 0x%p\n", ++count, large->unit_head.file, large->unit_head.line, (unsigned long)large->size, &large->unit_head.checksum); memmgr_log (buf); @@ -642,7 +642,7 @@ static void memmgr_final (void) static void memmgr_init (void) { #ifdef LOG_MEMMGR - snprintf(memmer_logfile, sizeof memmer_logfile, "log/%s.leaks", SERVER_NAME); + sprintf(memmer_logfile, "log/%s.leaks", SERVER_NAME); ShowStatus("Memory manager initialised: "CL_WHITE"%s"CL_RESET"\n", memmer_logfile); memset(hash_unfill, 0, sizeof(hash_unfill)); #endif /* LOG_MEMMGR */ |