[Intel-gfx] [PATCH i-g-t] lib/core: Fix docs for igt_assert_lt(e)
Daniel Vetter
daniel.vetter at ffwll.ch
Fri Oct 2 03:56:59 PDT 2015
Logical negation is hard.
Cc: "Morton, Derek J" <derek.j.morton at intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
---
lib/igt_core.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/igt_core.h b/lib/igt_core.h
index f8bfbf0145e1..293f691d0025 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -458,7 +458,7 @@ void igt_exit(void) __attribute__((noreturn));
* @n1: first integer
* @n2: second integer
*
- * Fails (sub-)test if the second integers is greater than the first.
+ * Fails (sub-)test if the second integers is strictly smaller than the first.
* Beware that for now this only works on integers.
*
* Like igt_assert(), but displays the values being compared on failure instead
@@ -471,7 +471,7 @@ void igt_exit(void) __attribute__((noreturn));
* @n1: first integer
* @n2: second integer
*
- * Fails (sub-)test if the second integers is strictly smaller than the first.
+ * Fails (sub-)test if the second integers is smaller than or equal to the first.
* Beware that for now this only works on integers.
*
* Like igt_assert(), but displays the values being compared on failure instead
--
2.5.1
More information about the Intel-gfx
mailing list