From: Simon Ruderich Date: Sun, 28 Jul 2013 02:37:45 +0000 (+0200) Subject: Use better readable order of arguments in if. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;ds=sidebyside;h=c5059d4c1e7f0de5a466d471e7ee26b6ccce8396;hp=c5059d4c1e7f0de5a466d471e7ee26b6ccce8396;p=tlsproxy%2Ftlsproxy.git Use better readable order of arguments in if. if (5 == x) as safeguard against if (x = 5) is no longer necessary as modern compilers warn about if (x = 5). ---