diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-09-30 23:37:10 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-09-30 23:40:40 +0200 |
commit | 2b01a801f6c597a60a1e622978bf7ac0105b9666 (patch) | |
tree | c67fc4ea95db08429c617b522a5f9f693692a0d4 | |
parent | 14c35ce7c1b9649bef14efeb3121660e541dd97a (diff) |
test-fileio: Remove dead check
t cannot be null here
-rw-r--r-- | src/test/test-fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-fileio.c b/src/test/test-fileio.c index 1b99828191..ad65abf426 100644 --- a/src/test/test-fileio.c +++ b/src/test/test-fileio.c @@ -258,7 +258,7 @@ static void test_status_field(void) { assert_se(safe_atollu(s, &buffers) == 0); } - if (p && t) + if (p) assert(buffers < total); /* Seccomp should be a good test for field full of zeros. */ |