]> git.sur5r.net Git - cc65/commitdiff
Make DoWarning static
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Dec 2002 23:40:01 +0000 (23:40 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Dec 2002 23:40:01 +0000 (23:40 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1689 b7a2c559-68d2-44c3-8de9-860c34a00d81

samples/tgidemo.c

index e0e83f9d8b339df908269104999c5067c573c91a..818d35d25b51ccc535fd9e4e4da124ebfe1de299 100644 (file)
@@ -71,7 +71,7 @@ static void CheckError (const char* S)
 }
 
 
-void DoWarning (void)
+static void DoWarning (void)
 /* Warn the user that the TGI driver is needed for this program */
 {
     printf ("Warning: This program needs the TGI\n"
@@ -143,7 +143,7 @@ static void DoDiagram (void)
     unsigned X;
 
     tgi_setpalette (Palette);
-    tgi_setcolor (1);  
+    tgi_setcolor (1);
     tgi_line (10, 10, 10, 190);
     tgi_lineto (310, 190);
     tgi_line (8, 12, 10, 10);