Skip to content

Commit 1536d26

Browse files
committed
removed extra parentheses
1 parent bfadeb3 commit 1536d26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/forder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ void radix_r(const int from, const int to, const int radix) {
11561156
uint8_t *my_ktmp = malloc(sizeof(*my_ktmp) * batchSize * n_rem);
11571157
if (!my_otmp || !my_ktmp) {
11581158
free(my_otmp); free(my_ktmp);
1159-
STOP(_("Failed to allocate 'my_otmp' and/or 'my_ktmp' arrays (%d bytes)."), (int)((sizeof(*my_otmp) + sizeof(*my_ktmp)) * batchSize)));
1159+
STOP(_("Failed to allocate 'my_otmp' and/or 'my_ktmp' arrays (%d bytes)."), (int)((sizeof(*my_otmp) + sizeof(*my_ktmp)) * batchSize));
11601160
}
11611161
// TODO: move these up above and point restrict[me] to them. Easier to Error that way if failed to alloc.
11621162
#pragma omp for

0 commit comments

Comments
 (0)