=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: dbghelp: Remove an "#if 1" preprocessor directive.

Alexandre Julliard julliard at winehq.org
Mon Jan 13 12:46:31 CST 2014


Module: wine
Branch: master
Commit: 74b0f6b4adf1155b5459266c6920efbb83740c63
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=74b0f6b4adf1155b5459266c6920efbb83740c63

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Sat Jan 11 13:53:24 2014 +0100

dbghelp: Remove an "#if 1" preprocessor directive.

---

 dlls/dbghelp/storage.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/dbghelp/storage.c b/dlls/dbghelp/storage.c
index 3f00b07..3c2aea6 100644
--- a/dlls/dbghelp/storage.c
+++ b/dlls/dbghelp/storage.c
@@ -358,7 +358,7 @@ void hash_table_destroy(struct hash_table* ht)
     variance = (double)sq / ht->num_buckets - mean * mean;
     FIXME("STATS: elts[num:%-4u size:%u mean:%f] buckets[min:%-4u variance:%+f max:%-4u]\n",
           ht->num_elts, ht->num_buckets, mean, min, variance, max);
-#if 1
+
     for (i = 0; i < ht->num_buckets; i++)
     {
         for (len = 0, elt = ht->buckets[i]; elt; elt = elt->next) len++;
@@ -372,7 +372,6 @@ void hash_table_destroy(struct hash_table* ht)
 
     }
 #endif
-#endif
 }
 
 void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt)




More information about the wine-cvs mailing list