COMP: use C-style comments in C code

Alex
This commit is contained in:
Alexander Neundorf 2007-09-17 15:40:35 -04:00
parent 6e9b3f36eb
commit f9391ab291
1 changed files with 1 additions and 1 deletions

View File

@ -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;