]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
minor CODING_STYLE clarification
authorLennart Poettering <lennart@poettering.net>
Mon, 2 May 2016 09:14:13 +0000 (11:14 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 2 May 2016 09:17:07 +0000 (11:17 +0200)
CODING_STYLE

index c2b2e56d5d63fcd18a8ce6b9888139f46527e7fc..b689355c9a6611fdadfe09ab88f15ff3e61930a5 100644 (file)
 
       unlink("/foo/bar/baz");
 
+  Don't cast function calls to (void) that return no error
+  conditions. Specifically, the various xyz_unref() calls that return a NULL
+  object shouldn't be cast to (void), since not using the return value does not
+  hide any errors.
+
 - Don't invoke exit(), ever. It is not replacement for proper error
   handling. Please escalate errors up your call chain, and use normal
   "return" to exit from the main function of a process. If you