Changed multi-line C comments into another style.

The left side doesn't look unbalanced.
This commit is contained in:
Greg King
2014-06-30 05:10:35 -04:00
parent 132d57f1ad
commit 0390c34e88
502 changed files with 8869 additions and 8884 deletions

View File

@@ -69,10 +69,10 @@ void WriteBinFile (const StrBuf* Data, const Collection* A,
}
/* Write to the file. We will use fwrite here instead of the fileio
* module, since it's just one call, so the latter doesn't have any
* advantages, and we can output a more readable error message in case of
* problems.
*/
** module, since it's just one call, so the latter doesn't have any
** advantages, and we can output a more readable error message in case of
** problems.
*/
Size = SB_GetLen (Data);
if (fwrite (SB_GetConstBuf (Data), 1, Size, F) != Size) {
Error ("Error writing to output file `%s': %s", Name, strerror (errno));