mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +00:00
Use a #define instead of numeric value
git-svn-id: svn://svn.cc65.org/cc65/trunk@1429 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
7fffd12f11
commit
29c217b4b2
@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 1998-2000 Ullrich von Bassewitz */
|
||||
/* (C) 1998-2002 Ullrich von Bassewitz */
|
||||
/* Wacholderweg 14 */
|
||||
/* D-70597 Stuttgart */
|
||||
/* EMail: uz@musoftware.de */
|
||||
@ -344,7 +344,7 @@ static SymEntry* SymFindAny (SymTable* Tab, const char* Name)
|
||||
SymEntry* Sym;
|
||||
do {
|
||||
/* Search in the current table */
|
||||
Sym = SymFind (Tab, Name, 0);
|
||||
Sym = SymFind (Tab, Name, SF_FIND_EXISTING);
|
||||
if (Sym) {
|
||||
/* Found, return it */
|
||||
return Sym;
|
||||
|
Loading…
Reference in New Issue
Block a user