commit | 670b1af07e5d0402b139e5678651118567695275 | [log] [download] |
---|---|---|
author | Igor Podlesny <openvz@poige.ru> | Mon Apr 29 11:31:44 2013 +0800 |
committer | Kir Kolyshkin <kir@openvz.org> | Sun Apr 28 22:19:48 2013 -0700 |
tree | 8e9bdb963a1ceaf2515ffd0308f16de1a5ba0336 | |
parent | 5b87e8620b756349ff56fab9cab73ba83e4c8409 [diff] |
Make "if (...) SOME_MACRO(); else" compile Otherwise it would expand to: if (...) do { ... } while(0); ; else which obviously is a syntax error.