diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-09-17 19:40:35 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-09-17 19:40:35 (GMT) |
commit | f9391ab2916755b319dff4dd11282425b2c076cc (patch) | |
tree | 4272443667f0954875d8c22ebcdf7a0d1a86ec3b /Utilities | |
parent | 6e9b3f36eb563289c3b241d42bd3a77ca7c81a32 (diff) | |
download | CMake-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.c | 2 |
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; |