]> git.sur5r.net Git - cc65/commitdiff
Fixed another signedness problem
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Oct 2001 14:50:10 +0000 (14:50 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Oct 2001 14:50:10 +0000 (14:50 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1036 b7a2c559-68d2-44c3-8de9-860c34a00d81

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

index 298ccb782de304960576ee18c7ae368a7ee08847..50713d11bd37aaee537a9188c5cfd1dc91842c22 100644 (file)
@@ -261,7 +261,7 @@ void InvDef (const char* Def)
 
 
 
-const char* GetArg (int* ArgNum, unsigned Len)
+const char* GetArg (unsigned* ArgNum, unsigned Len)
 /* Get an argument for a short option. The argument may be appended to the
  * option itself or may be separate. Len is the length of the option string.
  */
index 87b7a67c00be21766056ec8d7ba5045ce5f204c6..6791c4be3a002682ec64ea4e71aabbcd4f70cd7d 100644 (file)
@@ -82,11 +82,11 @@ 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 */
 
-const char* GetArg (int* ArgNum, unsigned Len);
+const char* GetArg (unsigned* ArgNum, unsigned Len);
 /* Get an argument for a short option. The argument may be appended to the
  * option itself or may be separate. Len is the length of the option string.
  */