summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-09-17 15:40:35 -0400
committerAlexander Neundorf <neundorf@kde.org>2007-09-17 15:40:35 -0400
commitf9391ab2916755b319dff4dd11282425b2c076cc (patch)
tree4272443667f0954875d8c22ebcdf7a0d1a86ec3b
parent6e9b3f36eb563289c3b241d42bd3a77ca7c81a32 (diff)
downloadcmake-f9391ab2916755b319dff4dd11282425b2c076cc.tar.gz
COMP: use C-style comments in C code
Alex
-rw-r--r--Utilities/cmtar/libtar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmtar/libtar.c b/Utilities/cmtar/libtar.c
index b19d043fcf..e9a14d8de2 100644
--- a/Utilities/cmtar/libtar.c
+++ b/Utilities/cmtar/libtar.c
@@ -99,7 +99,7 @@ static int libtar_gzopen(void* call_data, const char *pathname,
return -1;
}
-#if defined(__BEOS__) && !defined(__ZETA__) // no fchmod on BeOS...do pathname instead.
+#if defined(__BEOS__) && !defined(__ZETA__) /* no fchmod on BeOS...do pathname instead. */
if ((oflags & O_CREAT) && chmod(pathname, mode & 07777))
{
return -1;