From: Guus Sliepen Date: Sat, 7 Oct 2017 15:46:52 +0000 (+0200) Subject: Convert sizeof foo to sizeof(foo). X-Git-Tag: release-1.0.33~18 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=985d19caf20058db3c764f0f6fbeafa8bcc59fcc;hp=985d19caf20058db3c764f0f6fbeafa8bcc59fcc Convert sizeof foo to sizeof(foo). While technically sizeof is an operator and doesn't need the parentheses around expressions it operates on, except if they are type names, code formatters don't seem to handle this very well. ---