summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-11-30 15:45:39 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-11-30 15:48:21 -0500
commitd879fca6bcc391ec69a900affaafaaa51e02e5c5 (patch)
treee3af4b39930e579c40404de3d0df8ac035d277c3 /src/test
parentafae249efa4774c6676738ac5de6aeb4daf4889f (diff)
test-acl-util: fix two issues from review
https://github.com/systemd/systemd/pull/2063
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test-acl-util.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/test-acl-util.c b/src/test/test-acl-util.c
index bdea04d7f0..91866daf2d 100644
--- a/src/test/test-acl-util.c
+++ b/src/test/test-acl-util.c
@@ -41,7 +41,7 @@ static void test_add_acls_for_user(void) {
assert_se(fd >= 0);
/* Use the mode that user journal files use */
- assert(fchmod(fd, 0640) == 0);
+ assert_se(fchmod(fd, 0640) == 0);
cmd = strjoina("ls -l ", fn);
assert_se(system(cmd) == 0);
@@ -82,4 +82,6 @@ static void test_add_acls_for_user(void) {
int main(int argc, char **argv) {
test_add_acls_for_user();
+
+ return 0;
}