Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Sat, 25 Jul 2015 16:52:40 +0200
From: Frank Dittrich <frank.dittrich@...lbox.org>
To: john-dev@...ts.openwall.com
Subject: Re: Coding Style

On 07/25/2015 04:41 PM, magnum wrote:
> IMHO we should allow this too
> 
>      if (x == y) {
>          ..
>      }
>         else if (x > y) {
>          ...
>      }
>         else {
>          ....
>      }



I think this should be
	if (x == y) {
		...
	}
	else if (x > y) {
		...
	}
	else {
		....
	}

Frank

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.