Update of /cvsroot/mahogany/M/src/classes
In directory usw-pr-cvs1:/tmp/cvs-serv22584/src/classes
Modified Files:
MObject.cpp
Log Message:
more printf format warning fixes
Index: MObject.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/MObject.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -b -u -2 -r1.19 -r1.20
--- MObject.cpp 29 Jun 2002 00:17:42 -0000 1.19
+++ MObject.cpp 3 Jul 2002 17:05:45 -0000 1.20
@@ -60,9 +60,10 @@
if ( nCount > 0 ) {
- wxLogDebug("MEMORY LEAK: %lu object leaked:", nCount);
+ wxLogDebug("MEMORY LEAK: %lu object leaked:", (unsigned long)nCount);
}
for ( size_t n = 0; n < nCount; n++ ) {
- wxLogDebug("Object %lu: %s", n, gs_aObjects[n]->DebugDump().c_str());
+ wxLogDebug("Object %lu: %s",
+ (unsigned long)n, gs_aObjects[n]->DebugDump().c_str());
}
}
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
No, I will not fix your computer.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates