projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84ae261
)
[CRT] remove a self assignment. CORE-8215 #resolve
author
Robert Naumann
<gonzomdx@gmail.com>
Thu, 13 Apr 2017 19:09:31 +0000
(19:09 +0000)
committer
Robert Naumann
<gonzomdx@gmail.com>
Thu, 13 Apr 2017 19:09:31 +0000
(19:09 +0000)
svn path=/trunk/; revision=74299
reactos/sdk/lib/crt/stdlib/qsort.c
patch
|
blob
|
history
diff --git
a/reactos/sdk/lib/crt/stdlib/qsort.c
b/reactos/sdk/lib/crt/stdlib/qsort.c
index
80d8640
..
62f3651
100644
(file)
--- a/
reactos/sdk/lib/crt/stdlib/qsort.c
+++ b/
reactos/sdk/lib/crt/stdlib/qsort.c
@@
-189,7
+189,6
@@
qsort(void *base0, size_t n, size_t size, int (__cdecl *compar)(const void*, con
if (size == 0)
return;
- compar = compar;
thresh = size * THRESH;
max = base + n * size;
if (n >= THRESH)