mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 07:51:42 +08:00
13 lines
293 B
Diff
13 lines
293 B
Diff
--- a/fuzz/corpus2array.c
|
|
+++ b/fuzz/corpus2array.c
|
|
@@ -120,7 +120,8 @@
|
|
add = 1;
|
|
}
|
|
|
|
- for (int i = 8; i < 32 ; i++) {
|
|
+ int i;
|
|
+ for (i = 8; i < 32 ; i++) {
|
|
if ((e.type & (1U << i)) && typename[i - 8]) {
|
|
printf(add ? "|%s" : ", %s", typename[i - 8]);
|
|
add = 1;
|