summaryrefslogtreecommitdiffstats
path: root/unit/test-mux.c
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2010-11-27 17:38:57 -0200
committerDenis Kenzior <denkenz@gmail.com>2010-11-29 11:48:53 -0600
commit2012940822278bfb61fbe018accd8c99362993a5 (patch)
tree0acd60ee6c5bfc6d4e3bae754b3f78d3226aa43e /unit/test-mux.c
parent26b68846a8bd20395af34f21772da65ab406ad95 (diff)
downloadofono-2012940822278bfb61fbe018accd8c99362993a5.tar.bz2
unit: explicitly compare pointers to NULL
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
Diffstat (limited to 'unit/test-mux.c')
-rw-r--r--unit/test-mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unit/test-mux.c b/unit/test-mux.c
index e80b47cf..d0e2d320 100644
--- a/unit/test-mux.c
+++ b/unit/test-mux.c
@@ -201,7 +201,7 @@ static void test_mux(void)
g_io_channel_unref(io);
- if (!chat) {
+ if (chat == NULL) {
g_printerr("Chat creation failed\n");
return;
}