[Scummvm-cvs-logs] SF.net SVN: scummvm: [22840] scummvm/trunk/common/hashmap.h

sev at users.sourceforge.net sev at users.sourceforge.net
Fri Jun 2 18:07:57 CEST 2006


Revision: 22840
Author:   sev
Date:     2006-06-02 09:07:40 -0700 (Fri, 02 Jun 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=22840&view=rev

Log Message:
-----------
Remove slipped in debug output.

Modified Paths:
--------------
    scummvm/trunk/common/hashmap.h
Modified: scummvm/trunk/common/hashmap.h
===================================================================
--- scummvm/trunk/common/hashmap.h	2006-06-02 16:06:17 UTC (rev 22839)
+++ scummvm/trunk/common/hashmap.h	2006-06-02 16:07:40 UTC (rev 22840)
@@ -93,7 +93,7 @@
 	char *_key;
 	Val _value;
 	BaseNode() {assert(0);}
-	BaseNode(const char *key) { printf("%s\n", key); _key = (char *)malloc(strlen(key)+1); strcpy(_key, key); }
+	BaseNode(const char *key) { _key = (char *)malloc(strlen(key)+1); strcpy(_key, key); }
 };
 
 // The table sizes ideally are primes. We use a helper function to find


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list