silentbicycle / theft

property-based testing for C: generate input to find obscure bugs, then reduce to minimal failing input
ISC License
610 stars 31 forks source link

test/test_theft_integration: mark internal function as static #49

Open codyps opened 5 years ago

codyps commented 5 years ago

trial_post_repeat_with_verbose_set() is local to this translation unit, and lacks any seperate prototype. Mark it as static to keep it local.

Enabling `-Wmissing-prototypes' complains about issues like this one.

silentbicycle commented 5 years ago

For what it's worth, I'm most of the way through a rewrite of >3/4 of the codebase -- I'm restructuring everything so that it's able to use multiple cores. It's probably not worth making cleanup changes like this until the next release.