summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-09-17 19:40:35 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-09-17 19:40:35 (GMT)
commitf9391ab2916755b319dff4dd11282425b2c076cc (patch)
tree4272443667f0954875d8c22ebcdf7a0d1a86ec3b /Utilities
parent6e9b3f36eb563289c3b241d42bd3a77ca7c81a32 (diff)
downloadCMake-f9391ab2916755b319dff4dd11282425b2c076cc.zip
CMake-f9391ab2916755b319dff4dd11282425b2c076cc.tar.gz
CMake-f9391ab2916755b319dff4dd11282425b2c076cc.tar.bz2
COMP: use C-style comments in C code
Alex
Diffstat (limited to 'Utilities')
-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 b19d043..e9a14d8 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;