*** empty log message ***

This commit is contained in:
chombier 2001-07-02 14:25:29 +00:00
parent eaecbd1e2c
commit d632ff96ea
1 changed files with 5 additions and 1 deletions

View File

@ -875,6 +875,8 @@ static OSErr CStringItemToFile(short refNum, short index, char *value)
theErr = FSWrite( refNum, &count, "\"\015" );
}
}
} else {
theErr = noErr;
}
return theErr;
}
@ -885,7 +887,7 @@ static OSErr CStringItemToFile(short refNum, short index, char *value)
static OSErr PStringItemToFile(short refNum, short index, StringPtr value)
{
long count;
OSErr theErr = noErr;
OSErr theErr;
Str255 tempStr;
Str32 numStr;
@ -902,6 +904,8 @@ static OSErr PStringItemToFile(short refNum, short index, StringPtr value)
theErr = FSWrite( refNum, &count, "\"\015" );
}
}
} else {
theErr = noErr;
}
return theErr;
}