Skip to content

Commit c8605fc

Browse files
committed
Fix: wrong type in for cycle
1 parent 3abde77 commit c8605fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

experimental/algorithm/LAGraph_CFL_reachability_advanced.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#define LG_FREE_ALL \
2828
{ \
29-
for (size_t i = 0; i < nonterms_count; i++) { \
29+
for (int32_t i = 0; i < nonterms_count; i++) { \
3030
GrB_free(&T[i]); \
3131
} \
3232
\

0 commit comments

Comments
 (0)