Skip to content

Commit

Permalink
EXIT() should mainly be exit(n), not return(n). OPENSSL_EXIT() will
Browse files Browse the repository at this point in the history
take care of returning if necessary.
  • Loading branch information
levitte committed Jun 19, 2003
1 parent 0bd71d3 commit d3a28e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ extern "C" {
# define EXIT(n) _wsetexit(_WINEXITNOPERSIST)
# define OPENSSL_EXIT(n) do { if (n == 0) EXIT(n); return(n); } while(0)
# else
# define EXIT(n) return(n)
# define EXIT(n) exit(n)
# endif
# define LIST_SEPARATOR_CHAR ';'
# ifndef X_OK
Expand Down

0 comments on commit d3a28e8

Please sign in to comment.