qsort: add some forgotten ()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-06-18 18:39:17 +02:00
parent 3a0a2f33a6
commit 88f87ebaa3
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
void *stack[64][2];\
int sp= 1;\
stack[0][0] = p;\
stack[0][1] = p+num-1;\
stack[0][1] = (p)+(num)-1;\
while(sp){\
type *start= stack[--sp][0];\
type *end = stack[ sp][1];\