Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
74b0f6b4
Commit
74b0f6b4
authored
Jan 11, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jan 13, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Remove an "#if 1" preprocessor directive.
parent
1f99a11f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
storage.c
dlls/dbghelp/storage.c
+1
-2
No files found.
dlls/dbghelp/storage.c
View file @
74b0f6b4
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment