| 1373 | } |
| 1374 | |
| 1375 | bool fsck_has_queued_checks(struct fsck_options *options) |
| 1376 | { |
| 1377 | return !oidset_equal(&options->gitmodules_found, &options->gitmodules_done) || |
| 1378 | !oidset_equal(&options->gitattributes_found, &options->gitattributes_done); |
| 1379 | } |
| 1380 | |
| 1381 | void fsck_options_init(struct fsck_options *options, |
| 1382 | struct repository *repo, |
no test coverage detected