Fixed a typo in an if statement -- gcc caught it ('=' vs. '==').

This commit is contained in:
Sean Eric Fagan 1992-03-06 11:57:22 +00:00
parent 77c9b2c3e2
commit 2c89ba265c

View file

@ -49,7 +49,7 @@ nltype indirectchild = {
int int
iscall (unsigned char *ip) { iscall (unsigned char *ip) {
if (*ip == 0xeb || *ip = 0x9a) if (*ip == 0xeb || *ip == 0x9a)
return 1; return 1;
return 0; return 0;
} }
@ -95,8 +95,7 @@ findcall( parentp , p_lowpc , p_highpc )
* check that this is the address of * check that this is the address of
* a function. * a function.
*/ */
destpc = ( (unsigned long)instructp + 5 destpc = ( (unsigned long)instructp + 5 - (unsigned long) textspace);
- (unsigned long) textspace;
if ( destpc >= s_lowpc && destpc <= s_highpc ) { if ( destpc >= s_lowpc && destpc <= s_highpc ) {
childp = nllookup( destpc ); childp = nllookup( destpc );
# ifdef DEBUG # ifdef DEBUG