summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/slang/slmalloc.c
diff options
context:
space:
mode:
authorMatthias Badaire <mbadaire@mandriva.com>2001-05-30 14:31:23 +0000
committerMatthias Badaire <mbadaire@mandriva.com>2001-05-30 14:31:23 +0000
commit0879c2dadfe9f6998bdcddf837918ed8617d17b4 (patch)
tree29d89b91ab9935e390efcf1739a7867b8ea2d8c3 /mdk-stage1/slang/slmalloc.c
parentd8b95b8592b512c3bc036cb2df9745e39104490d (diff)
downloaddrakx-backup-do-not-use-0879c2dadfe9f6998bdcddf837918ed8617d17b4.tar
drakx-backup-do-not-use-0879c2dadfe9f6998bdcddf837918ed8617d17b4.tar.gz
drakx-backup-do-not-use-0879c2dadfe9f6998bdcddf837918ed8617d17b4.tar.bz2
drakx-backup-do-not-use-0879c2dadfe9f6998bdcddf837918ed8617d17b4.tar.xz
drakx-backup-do-not-use-0879c2dadfe9f6998bdcddf837918ed8617d17b4.zip
- allow build on ia64
- have CFLAGS centralized in Makefile.common (should help ports such as alpha) - better looking sub makefiles
Diffstat (limited to 'mdk-stage1/slang/slmalloc.c')
-rw-r--r--mdk-stage1/slang/slmalloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdk-stage1/slang/slmalloc.c b/mdk-stage1/slang/slmalloc.c
index 914e1e0ef..be4ed6cae 100644
--- a/mdk-stage1/slang/slmalloc.c
+++ b/mdk-stage1/slang/slmalloc.c
@@ -94,7 +94,7 @@ static int check_memory (unsigned char *p, char *what)
if (n == 0xFFFFFFFFUL)
{
- sprintf (buf, "%s: %p: Already FREE! Abort NOW.", what, p - Chunk);
+ sprintf (buf, "%s: %p: Already FREE! Abort NOW.", what, (void*)p - Chunk);
SLmalloc_doerror (buf);
return -1;
}
@@ -104,7 +104,7 @@ static int check_memory (unsigned char *p, char *what)
|| (*(p + (int) (n + 2)) != 81)
|| (*(p + (int) (n + 3)) != 86))
{
- sprintf (buf, "\007%s: %p: Memory corrupt! Abort NOW.", what, p);
+ sprintf (buf, "\007%s: %p: Memory corrupt! Abort NOW.", what, (void*)p);
SLmalloc_doerror (buf);
return -1;
}
@@ -115,7 +115,7 @@ static int check_memory (unsigned char *p, char *what)
if (Total_Allocated < 0)
{
sprintf (buf, "\007%s: %p\nFreed %ld, Allocated is: %ld!\n",
- what, p, (long) n, Total_Allocated);
+ what, (void*)p, (long) n, Total_Allocated);
SLang_doerror (buf);
}
#ifdef SLDEBUG_DOUT