We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 781161b commit c34c431Copy full SHA for c34c431
libpkg/pkg/vec.h
@@ -22,7 +22,7 @@
22
23
/* intmax_t because the value can be negative */
24
#define vec_rforeach(list, __i) \
25
- for (intmax_t __i = (list).len -1 ; __i >= 0; __i--)
+ for (int __i = (list).len -1 ; __i >= 0; __i--)
26
27
#define vec_free(v) \
28
do { \
0 commit comments