Author: tack
Date: Tue Mar 13 13:29:04 2007
New Revision: 2554

Modified:
   trunk/base/src/extensions/shmmodule.c

Log:
Hopefully eliminate compiler warning on 64 bit platforms.


Modified: trunk/base/src/extensions/shmmodule.c
==============================================================================
--- trunk/base/src/extensions/shmmodule.c       (original)
+++ trunk/base/src/extensions/shmmodule.c       Tue Mar 13 13:29:04 2007
@@ -574,7 +574,7 @@
        sprintf(buf2, "None");
     else
        sprintf(buf2, "0x%p", self->addr);
-    sprintf(buf, "<%s shared memory object, id=%d, size=%u, addr=%s>",
+    sprintf(buf, "<%s shared memory object, id=%d, size=%zd, addr=%s>",
            (self->addr == NULL) ? "detached" : (self->mode & SHM_RDONLY) ?
            "attached RO" : "attached R/W",
            self->shmid,

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to