]> git.sur5r.net Git - cc65/commitdiff
Last change fixed the wrong parameter
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Oct 2001 14:45:59 +0000 (14:45 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Oct 2001 14:45:59 +0000 (14:45 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1035 b7a2c559-68d2-44c3-8de9-860c34a00d81

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

index 8d338028b25b59bf79dbd792be8efea15ee0333b..298ccb782de304960576ee18c7ae368a7ee08847 100644 (file)
@@ -170,14 +170,14 @@ static void ExpandFile (CmdLine* L, const char* Name)
 
 
 
-void InitCmdLine (unsigned* aArgCount, char** aArgVec[], const char* aProgName)
+void InitCmdLine (int* aArgCount, char** aArgVec[], const char* aProgName)
 /* Initialize command line parsing. aArgVec is the argument array terminated by
  * a NULL pointer (as usual), ArgCount is the number of valid arguments in the
  * array. Both arguments are remembered in static storage.
  */
 {
     CmdLine    L;
-    unsigned    I;
+    int         I;
 
     /* Get the program name from argv[0] but strip a path */
     if (*(aArgVec)[0] == 0) {
@@ -284,7 +284,7 @@ const char* GetArg (int* ArgNum, unsigned Len)
 
 
 
-void LongOption (int* ArgNum, const LongOpt* OptTab, unsigned OptCount)
+void LongOption (unsigned* ArgNum, const LongOpt* OptTab, unsigned OptCount)
 /* Handle a long command line option */
 {
     /* Get the option and the argument (which may be zero) */
index ce8f1e1ba9b1fa1bc92e38aafaed64ee992ec395..87b7a67c00be21766056ec8d7ba5045ce5f204c6 100644 (file)
@@ -71,7 +71,7 @@ struct LongOpt {
 
 
 
-void InitCmdLine (unsigned* aArgCount, char** aArgVec[], const char* aProgName);
+void InitCmdLine (int* aArgCount, char** aArgVec[], const char* aProgName);
 /* Initialize command line parsing. aArgVec is the argument array terminated by
  * a NULL pointer (as usual), ArgCount is the number of valid arguments in the
  * array. Both arguments are remembered in static storage.
@@ -82,7 +82,7 @@ void UnknownOption (const char* Opt) attribute ((noreturn));
 
 void NeedArg (const char* Opt) attribute ((noreturn));
 /* Print an error about a missing option argument and exit. */
-
+                        
 void InvDef (const char* Def) attribute ((noreturn));
 /* Print an error about an invalid definition and die */
 
@@ -91,7 +91,7 @@ const char* GetArg (int* ArgNum, unsigned Len);
  * option itself or may be separate. Len is the length of the option string.
  */
 
-void LongOption (int* ArgNum, const LongOpt* OptTab, unsigned OptCount);
+void LongOption (unsigned* ArgNum, const LongOpt* OptTab, unsigned OptCount);
 /* Handle a long command line option */