]> git.sur5r.net Git - cc65/commitdiff
Rename a function
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 14 Jun 2000 07:48:27 +0000 (07:48 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 14 Jun 2000 07:48:27 +0000 (07:48 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@66 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/cmdline.c
src/common/cmdline.h

index 3d4ac8cb17e567f3b178ae7f63de85d4bf8c9300..564a4203a6c2867c055fcb0c2e89289408a45222 100644 (file)
@@ -87,10 +87,10 @@ void NeedArg (const char* Opt)
 
 
 
-void InvSym (const char* Def)
-/* Print an error about an invalid symbol definition and die */
+void InvDef (const char* Def)
+/* Print an error about an invalid definition and die */
 {
-    fprintf (stderr, "Invalid symbol definition: `%s'\n", Def);
+    fprintf (stderr, "Invalid definition: `%s'\n", Def);
     exit (EXIT_FAILURE);
 }
 
index aadeb06266b4b47d91d641ddcafb43c89a7e4feb..da620ac44378547c114ff58d18a4aa9a1c3df8cc 100644 (file)
@@ -72,8 +72,8 @@ void UnknownOption (const char* Opt);
 void NeedArg (const char* Opt);
 /* Print an error about a missing option argument and exit. */
 
-void InvSym (const char* Def);
-/* Print an error about an invalid symbol definition and die */
+void InvDef (const char* Def);
+/* Print an error about an invalid definition and die */
 
 const char* GetArg (int* ArgNum, unsigned Len);
 /* Get an argument for a short option. The argument may be appended to the