Browse Source

qsort: add some forgotten ()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
88f87ebaa3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/qsort.h

+ 1
- 1
libavutil/qsort.h 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];\


Loading…
Cancel
Save