opentechinstitute / commotiond

The system management daemon for the Commotion Wireless Project.
https://commotionwireless.net
GNU Affero General Public License v3.0
26 stars 21 forks source link

make CHECK macro calls safer for multistatement operation; dont disable ... #102

Closed dismantl closed 10 years ago

dismantl commented 10 years ago

...DEBUG macros on non-OpenWRT platforms

this allows CHECK to be safely called in situations like this, which would previously throw errors:

if (foo)
  CHECK(bar, "baz");
else
  CHECK(bar, "baz");