Fix two minor typos

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2020-09-16 10:01:45 +10:00
parent 31800cf870
commit d2fdb2ae0e
2 changed files with 2 additions and 2 deletions

View file

@ -197,7 +197,7 @@ dep_unittest = declare_dependency(
dependencies: munit
)
test('unit-tests-untils',
test('unit-tests-utils',
executable('unit-tests-utils',
'test/unit-tests.c',
src_libutil,

View file

@ -215,7 +215,7 @@ portal_init(struct ei *ei, const char *busname)
const char *path = NULL;
int rc = sd_bus_open_user(&bus);
if (rc < 0 ) {
if (rc < 0) {
log_error(ei, "Failed to init dbus: %s\n", strerror(-rc));
return -ECONNREFUSED;
}