26 lines
680 B
Diff
26 lines
680 B
Diff
From dd6fa23814a1e552652a407dff210e6606944b4f Mon Sep 17 00:00:00 2001
|
|
From: foviedoITBA <foviedo@itba.edu.ar>
|
|
Date: Thu, 16 Nov 2017 16:55:30 -0300
|
|
Subject: [PATCH] Fixed typo in ck_assert_str_eq doc
|
|
|
|
---
|
|
src/check.h.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/check.h.in b/src/check.h.in
|
|
index 7966126..9e03d20 100644
|
|
--- a/src/check.h.in
|
|
+++ b/src/check.h.in
|
|
@@ -1430,7 +1430,7 @@ do { \
|
|
* Check two strings to determine if 0==strcmp(X,Y)
|
|
*
|
|
* If X or Y is NULL the test failes.
|
|
- * If (0==strcmp(X,Y)), the test fails.
|
|
+ * If not 0==strcmp(X,Y), the test fails.
|
|
*
|
|
* @param X string
|
|
* @param Y string to compare against X
|
|
--
|
|
2.27.0
|
|
|