Skip to content

Commit

Permalink
fix #41
Browse files Browse the repository at this point in the history
  • Loading branch information
stgeke committed Aug 1, 2020
1 parent 892342f commit 88f90cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sort_imp.h
Expand Up @@ -279,7 +279,8 @@ static void radix_sortp(
} while(0)
#define MERGE_SORT() \
do { \
uint i=0, n=An, base=-n, odd=0, c=0, b=1; \
uint i=0, n=An, odd=0, c=0, b=1; \
sint base=-n; \
for(;;) { \
DATA *restrict p; \
if((c&1)==0) { \
Expand Down

0 comments on commit 88f90cb

Please sign in to comment.