unit-tests/test-lib: fix typo in check_pointer_eq() description
The comment surrounding check_pointer_eq() should explain about what this function does instead of explaining check_int(). Correct this. Signed-off-by: Kousik Sanagavarapu <five231003@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
39bf06adf9
commit
6e71d6ac7c
|
@ -76,8 +76,9 @@ int test_assert(const char *location, const char *check, int ok);
|
||||||
int check_bool_loc(const char *loc, const char *check, int ok);
|
int check_bool_loc(const char *loc, const char *check, int ok);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Compare two integers. Prints a message with the two values if the
|
* Compare the equality of two pointers of same type. Prints a message
|
||||||
* comparison fails. NB this is not thread safe.
|
* with the two values if the equality fails. NB this is not thread
|
||||||
|
* safe.
|
||||||
*/
|
*/
|
||||||
#define check_pointer_eq(a, b) \
|
#define check_pointer_eq(a, b) \
|
||||||
(test__tmp[0].p = (a), test__tmp[1].p = (b), \
|
(test__tmp[0].p = (a), test__tmp[1].p = (b), \
|
||||||
|
|
Loading…
Reference in New Issue