summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-06-02 21:47:19 +0200
committerJim Meyering <meyering@redhat.com>2008-06-02 21:47:19 +0200
commitcc4bdb92f9ef7528658c9e925f2b1156bd693c86 (patch)
treeacc400d2446ae29d4651968a266e3372b0ea3202
parent0647f3eb5aeaa783ce21ddee268367d2ba7248df (diff)
downloadcoreutils-cc4bdb92f9ef7528658c9e925f2b1156bd693c86.tar.xz
fix cpp indentation policy violations
* src/copy.c (mkfifo): Indent nested "# define". * src/timeout.c (ECANCELED): Likewise.
-rw-r--r--src/copy.c2
-rw-r--r--src/timeout.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/copy.c b/src/copy.c
index c2f21a340..7d33cb33a 100644
--- a/src/copy.c
+++ b/src/copy.c
@@ -72,7 +72,7 @@ rpl_mkfifo (char const *file, mode_t mode)
errno = ENOTSUP;
return -1;
}
-#define mkfifo rpl_mkfifo
+# define mkfifo rpl_mkfifo
#endif
#ifndef USE_ACL
diff --git a/src/timeout.c b/src/timeout.c
index b393a636a..9373cfa36 100644
--- a/src/timeout.c
+++ b/src/timeout.c
@@ -75,7 +75,7 @@
/* Internal failure. */
#ifndef ECANCELED
-#define ECANCELED 125
+# define ECANCELED 125
#endif
static int timed_out;