summaryrefslogtreecommitdiff
path: root/tar/util.c
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@gmail.com>2010-04-10 21:11:54 -0400
committerTim Kientzle <kientzle@gmail.com>2010-04-10 21:11:54 -0400
commitce450a48fcc9a0400b9a5004584fbbd12b0c0a4e (patch)
tree195c8ace74e1c40a3c5af235d7b6cfdd4fb01b12 /tar/util.c
parent817fb64f5cf3bfd84af9860edf00b456d33bcc4b (diff)
downloadlibarchive-ce450a48fcc9a0400b9a5004584fbbd12b0c0a4e.tar.gz
Style: tab follows #define
SVN-Revision: 2226
Diffstat (limited to 'tar/util.c')
-rw-r--r--tar/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tar/util.c b/tar/util.c
index f7232744..d5202fee 100644
--- a/tar/util.c
+++ b/tar/util.c
@@ -56,7 +56,7 @@ __FBSDID("$FreeBSD: src/usr.bin/tar/util.c,v 1.23 2008/12/15 06:00:25 kientzle E
#include <wctype.h>
#else
/* If we don't have wctype, we need to hack up some version of iswprint(). */
-#define iswprint isprint
+#define iswprint isprint
#endif
#include "bsdtar.h"
@@ -66,14 +66,14 @@ static size_t bsdtar_expand_char(char *, size_t, char);
static const char *strip_components(const char *path, int elements);
#if defined(_WIN32) && !defined(__CYGWIN__)
-#define read _read
+#define read _read
#endif
/* TODO: Hack up a version of mbtowc for platforms with no wide
* character support at all. I think the following might suffice,
* but it needs careful testing.
* #if !HAVE_MBTOWC
- * #define mbtowc(wcp, p, n) ((*wcp = *p), 1)
+ * #define mbtowc(wcp, p, n) ((*wcp = *p), 1)
* #endif
*/