mirror of
https://github.com/acpica/acpica/
synced 2025-01-01 07:04:27 +03:00
Converted to new return macros
date 99.08.13.16.59.00; author rmoore1; state Exp;
This commit is contained in:
parent
ccf45beb4f
commit
56857a245b
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user