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

@@ -342,14 +342,14 @@ void ObjAdd (FILE* Obj, const char* Name)
ObjReadAssertions (Obj, O->Header.AssertOffs, O);
/* Read the segment list from the object file. This must be late, since
* the expressions stored in the code may reference segments or imported
* symbols.
*/
** the expressions stored in the code may reference segments or imported
** symbols.
*/
ObjReadSections (Obj, O->Header.SegOffs, O);
/* Read the scope table from the object file. Scopes reference segments, so
* we must read them after the sections.
*/
** we must read them after the sections.
*/
ObjReadScopes (Obj, O->Header.ScopeOffs, O);
/* Read the spans from the object file */
@@ -368,7 +368,7 @@ void ObjAdd (FILE* Obj, const char* Name)
InsertObjData (O);
/* All references to strings are now resolved, so we can delete the module
* string pool.
*/
** string pool.
*/
FreeObjStrings (O);
}