diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-09-15 13:11:45 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-09-19 12:08:08 +0100 |
commit | a171dc6e639a60a5bd48b360558615ef4bedd011 (patch) | |
tree | d7969b10a261bae2b2651d65898b1199991899f3 /tests | |
parent | 2f23aa1c67da5148284c0026ef4d9f20c2917f9b (diff) | |
download | libguestfs-a171dc6e639a60a5bd48b360558615ef4bedd011.tar.gz libguestfs-a171dc6e639a60a5bd48b360558615ef4bedd011.tar.xz libguestfs-a171dc6e639a60a5bd48b360558615ef4bedd011.zip |
syntax: Use STREQ/STRNEQ in place of strcmp.
Found by 'make syntax-check'.
(cherry picked from commit b0cefb417d01c6dcb87cc6bafe9c19b98c690c9d)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/regressions/rhbz790721.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressions/rhbz790721.c b/tests/regressions/rhbz790721.c index 844631ff..7d5c266c 100644 --- a/tests/regressions/rhbz790721.c +++ b/tests/regressions/rhbz790721.c @@ -184,7 +184,7 @@ start_thread (void *vi) * building code which is what this regression test is designed to * spot. */ - if (strcmp (error, "child process died unexpectedly") != 0) { + if (STRNEQ (error, "child process died unexpectedly")) { fprintf (stderr, "rhbz790721: [thread %d]: error: %s\n", thread_id, error); *(int *)vi = -1; pthread_exit (vi); |