]> git.sur5r.net Git - cc65/commitdiff
Added a missing const
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Oct 2001 18:21:43 +0000 (18:21 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Oct 2001 18:21:43 +0000 (18:21 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1045 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/error.c
src/cc65/error.h

index b61312855cf0411839ea92f834cc57ad6a8304c5..cba0a479e97ecb2dca7979037abf8696655a93c7 100644 (file)
@@ -147,7 +147,7 @@ void Fatal (const char* Format, ...)
 /* Print a message about a fatal error and die */
 {
     va_list ap;
-                                                                 
+
     const char* FileName;
     unsigned    LineNum;
     if (CurTok.LI) {
@@ -171,7 +171,7 @@ void Fatal (const char* Format, ...)
 
 
 
-void Internal (char* Format, ...)
+void Internal (const char* Format, ...)
 /* Print a message about an internal compiler error and die. */
 {
     va_list ap;
@@ -196,7 +196,7 @@ void Internal (char* Format, ...)
 
     /* Use abort to create a core dump */
     abort ();
-}
+}              
 
 
 
@@ -211,4 +211,4 @@ void ErrorReport (void)
 
 
 
-                               
+
index b10d786c60b3f7528382f628a9e7df2aec3ea2fa..cc5ddc73307bf68ccfaa7444d47b416729577d05 100644 (file)
@@ -76,7 +76,7 @@ void PPError (const char* Format, ...) attribute ((format (printf, 1, 2)));
 void Fatal (const char* Format, ...) attribute ((noreturn, format (printf, 1, 2)));
 /* Print a message about a fatal error and die */
 
-void Internal (char* Format, ...) attribute ((noreturn, format (printf, 1, 2)));
+void Internal (const char* Format, ...) attribute ((noreturn, format (printf, 1, 2)));
 /* Print a message about an internal compiler error and die. */
 
 void ErrorReport (void);