removed use of TRUE and FALSE

This commit is contained in:
Jeff Hill
2001-05-30 22:52:46 +00:00
parent 0504af338b
commit 194435b010

View File

@@ -1674,9 +1674,9 @@ void verifyOldPend ()
/*
* at least verify that the old ca_pend() is in the symbol table
*/
status = ca_pend ( 100000.0, TRUE );
status = ca_pend ( 100000.0, 1 );
assert ( status = ECA_NORMAL );
status = ca_pend ( 1e-12, FALSE );
status = ca_pend ( 1e-12, 0 );
assert ( status = ECA_TIMEOUT );
}