]> git.sur5r.net Git - cc65/blobdiff - src/ca65/asserts.c
atari: split color.s into bordercolor.s and bgcolor.s
[cc65] / src / ca65 / asserts.c
index d70f8f6023e230ff3dc33aa2270479ddd0ce1589..0d4c856a39a56f76d6d9d84b828dd84af33d07d4 100644 (file)
@@ -48,7 +48,7 @@
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
@@ -68,7 +68,7 @@ static Collection Assertions = STATIC_COLLECTION_INITIALIZER;
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -84,7 +84,7 @@ static Assertion* NewAssertion (ExprNode* Expr, AssertAction Action, unsigned Ms
     A->Action   = Action;
     A->Msg      = Msg;
     A->LI       = EmptyCollection;
-    GetFullLineInfo (&A->LI, 1);
+    GetFullLineInfo (&A->LI);
 
     /* Return the new struct */
     return A;
@@ -176,8 +176,3 @@ void WriteAssertions (void)
     /* Done writing the assertions */
     ObjEndAssertions ();
 }
-
-
-
-
-