changed order of params for check_value()
This commit is contained in:
@@ -98,13 +98,16 @@ extern void single_test_context(
|
||||
extern void check_value(
|
||||
TestState *, // the current test state
|
||||
const char *, // a description of the context
|
||||
void *, // the value being checked
|
||||
void *, // the reference value
|
||||
void (*)( // the test function
|
||||
|
||||
// the test function
|
||||
void (*)(
|
||||
TestState *,
|
||||
void *, // the check value
|
||||
void * // the reference value
|
||||
)
|
||||
),
|
||||
|
||||
void *, // the value being checked
|
||||
void * // the reference value
|
||||
);
|
||||
|
||||
//jl
|
||||
|
||||
Reference in New Issue
Block a user