diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2016-01-25 15:29:11 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2016-01-25 15:29:11 +1000 |
commit | de3f1fa6fa23cebef17640dc1eb4ea8df270ecd9 (patch) | |
tree | 0eb7ae087e9dd10fc2b962a8879d6906773a674a /test/litest-selftest.c | |
parent | 6920a42fd4ec8dfa633ef5bc1865f994afc63693 (diff) | |
parent | b6f59d0e3b2e38abd0c79e36a5971dc7ea1e2b16 (diff) | |
download | libinput-tablet-support.tar.gz |
Merge branch 'master' into tablet-supporttablet-support
Diffstat (limited to 'test/litest-selftest.c')
-rw-r--r-- | test/litest-selftest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/litest-selftest.c b/test/litest-selftest.c index 5016514d..47d5ef13 100644 --- a/test/litest-selftest.c +++ b/test/litest-selftest.c @@ -169,8 +169,8 @@ START_TEST(litest_ptr_eq_notrigger) int v = 10; int *a = &v; int *b = &v; - int c = NULL; - int d = NULL; + int *c = NULL; + int *d = NULL; litest_assert_ptr_eq(a, b); litest_assert_ptr_eq(c, d); |