]> git.sur5r.net Git - cc65/commitdiff
Type change
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 23 Mar 2001 17:59:23 +0000 (17:59 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 23 Mar 2001 17:59:23 +0000 (17:59 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@650 b7a2c559-68d2-44c3-8de9-860c34a00d81

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

index 597f3778f56676ccbd9b9e71039ba60179ff3c04..58be881dbd6de95cbdd3e689ca16e5538bb6331d 100644 (file)
@@ -170,7 +170,7 @@ 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.
@@ -180,7 +180,7 @@ void InitCmdLine (unsigned* aArgCount, char** aArgVec[], const char* aProgName)
     unsigned   I;
 
     /* Get the program name from argv[0] but strip a path */
-    if (*(aArgVec)[0] == 0) {    
+    if (*(aArgVec)[0] == 0) {
        /* Use the default name given */
        ProgName = aProgName;
     } else {
index ce8f1e1ba9b1fa1bc92e38aafaed64ee992ec395..97f27924e8caf70a0c70feb695f7f8aa3dce8ecb 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.