git-svn-id: svn://svn.cc65.org/cc65/trunk@2100 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-04-28 21:54:06 +00:00
parent 459cfb06c1
commit 09629cd229
3 changed files with 5 additions and 31 deletions

View File

@@ -87,7 +87,7 @@ void FreeCfgData (CfgData* D)
int CfgDataFind (Collection* Attributes, const char* AttrName)
int CfgDataFind (const Collection* Attributes, const char* AttrName)
/* Find the attribute with the given name and return its index. Return -1 if
* the attribute was not found.
*/
@@ -108,7 +108,7 @@ int CfgDataFind (Collection* Attributes, const char* AttrName)
}
/* Not found */
return -1;
return -1;
}