Converted to new return macros

date	99.08.13.16.59.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:14:49 +00:00
parent ccf45beb4f
commit 56857a245b

View File

@ -181,7 +181,7 @@ NsPushCurrentScope (
}
}
FUNCTION_EXIT;
return_VOID;
}
@ -227,7 +227,7 @@ NsPushMethodScope (
}
}
FUNCTION_EXIT;
return_VOID;
}
/****************************************************************************
@ -277,14 +277,12 @@ NsPopCurrent (
if ((TYPE_Any == Type) || (Type == (CurrentScope + 1)->Type))
{
DEBUG_PRINT (TRACE_EXEC, ("Found %d\n", Type));
FUNCTION_EXIT;
return Count;
return_VALUE (Count);
}
}
DEBUG_PRINT (TRACE_EXEC,("%d Not Found\n", Type));
FUNCTION_EXIT;
return -Count;
return_VALUE (-Count);
}