Skip to content
Snippets Groups Projects
Commit 2d0b7a59 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Corrected a integer type warning

Former-commit-id: 0c4421a9ace916a12ecaf9c33330d3c151f89fad
parent 9e5d1197
No related branches found
No related tags found
No related merge requests found
......@@ -488,7 +488,7 @@ void parts_sort(struct part *parts, struct xpart *xparts, int *ind, int N,
volatile int ready;
};
struct qstack *qstack;
int qstack_size = 2 * (max - min) + 10;
unsigned int qstack_size = 2 * (max - min) + 10;
volatile unsigned int first, last, waiting;
int pivot;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment