summaryrefslogtreecommitdiffstats
path: root/xf86drmHash.c
diff options
context:
space:
mode:
Diffstat (limited to 'xf86drmHash.c')
-rw-r--r--xf86drmHash.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/xf86drmHash.c b/xf86drmHash.c
index f287e61fb..b2fa414e5 100644
--- a/xf86drmHash.c
+++ b/xf86drmHash.c
@@ -98,9 +98,6 @@ static unsigned long HashHash(unsigned long key)
}
hash %= HASH_SIZE;
-#if DEBUG
- printf( "Hash(%lu) = %lu\n", key, hash);
-#endif
return hash;
}
@@ -201,9 +198,6 @@ int drmHashInsert(void *t, unsigned long key, void *value)
bucket->value = value;
bucket->next = table->buckets[hash];
table->buckets[hash] = bucket;
-#if DEBUG
- printf("Inserted %lu at %lu/%p\n", key, hash, bucket);
-#endif
return 0; /* Added to table */
}