]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
include/env: unify indentation
authorSami Kerola <kerolasa@iki.fi>
Wed, 17 Oct 2012 19:26:14 +0000 (20:26 +0100)
committerKarel Zak <kzak@redhat.com>
Fri, 19 Oct 2012 13:07:44 +0000 (15:07 +0200)
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Signed-off-by: Karel Zak <kzak@redhat.com>
include/env.h

index df692bc68b86be91f0e9a8f2817aaacdf7382a39..a53d3102722021be543dde43d1044f9258285f45 100644 (file)
@@ -3,14 +3,13 @@
 
 #include "c.h"
 
-extern void sanitize_env (void);
+extern void sanitize_env(void);
 extern char *safe_getenv(const char *arg);
 
-static inline void
-xsetenv (char const *name, char const *val, int overwrite)
+static inline void xsetenv(char const *name, char const *val, int overwrite)
 {
-  if (setenv (name, val, overwrite) != 0)
-    err (EXIT_FAILURE,  "failed to set the %s environment variable", name);
+       if (setenv(name, val, overwrite) != 0)
+               err(EXIT_FAILURE, "failed to set the %s environment variable", name);
 }
 
 #endif /* UTIL_LINUX_ENV_H */