[cairo-commit] cairo/src cairo-hash.c,1.16,1.17

Carl Worth commit at pdx.freedesktop.org
Wed Jun 29 17:05:45 PDT 2005


Committed by: cworth

Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv28670/src

Modified Files:
	cairo-hash.c 
Log Message:

        * src/cairo-hash.c (_cairo_hash_table_resize): Remove debugging
        printfs.


Index: cairo-hash.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-hash.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- cairo-hash.c	30 Jun 2005 00:02:37 -0000	1.16
+++ cairo-hash.c	30 Jun 2005 00:05:31 -0000	1.17
@@ -327,8 +327,6 @@
 	/* This code is being abused if we can't make a table big enough. */
 	assert (tmp.arrangement - hash_table_arrangements <
 		NUM_HASH_TABLE_ARRANGEMENTS);
-	fprintf (stderr, "Growing from %ld to %ld\n",
-		 hash_table->arrangement->size, tmp.arrangement->size);
     }
     else /* hash_table->live_entries < low */
     {
@@ -336,8 +334,6 @@
 	if (hash_table->arrangement == &hash_table_arrangements[0])
 	    return CAIRO_STATUS_SUCCESS;
 	tmp.arrangement = hash_table->arrangement - 1;
-	fprintf (stderr, "Shrinking from %ld to %ld\n",
-		 hash_table->arrangement->size, tmp.arrangement->size);
     }
 
     new_size = tmp.arrangement->size;




More information about the cairo-commit mailing list