From: Daniel Kahn Gillmor Date: Thu, 14 Apr 2022 00:40:15 +0000 (-0700) Subject: recommend exit(EXIT_SUCCESS) instead of exit(SUCCES) X-Git-Tag: 1.8.2-rc.1~15^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe3bd19d99c7696a70d7fffa0da46ba7109e32a6;p=thirdparty%2Fldns.git recommend exit(EXIT_SUCCESS) instead of exit(SUCCES) In addition to being misspelled, the form without the EXIT_ prefix doesn't appear anywhere else in the codebase. --- diff --git a/doc/CodingStyle b/doc/CodingStyle index a326e5c3..693fdd31 100644 --- a/doc/CodingStyle +++ b/doc/CodingStyle @@ -60,5 +60,5 @@ The libdns coding style guide arcount = additional section count ldns- -* use exit(EXIT_FAILURE)/ exit(SUCCES) +* use exit(EXIT_FAILURE)/ exit(EXIT_SUCCESS) *