From fe3bd19d99c7696a70d7fffa0da46ba7109e32a6 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Wed, 13 Apr 2022 17:40:15 -0700 Subject: [PATCH] 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. --- doc/CodingStyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) * -- 2.47.3