diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-02-10 12:44:19 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-02-13 17:39:16 +0000 |
commit | 05cc2c3348e406027837e60a2c1015b997760c83 (patch) | |
tree | 75433da241fcfe21df45615179a2eb37d4a3b558 /bus/test.c | |
parent | 267dbff1ea6f738de415d3ad61d8391146908d1f (diff) |
Replace a series of booleans, all (apparently) alike, with flags
This makes it a bit clearer what's going on.
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Reviewed-by: Lennart Poettering <lennart@poettering.net>
Diffstat (limited to 'bus/test.c')
-rw-r--r-- | bus/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bus/test.c b/bus/test.c index 19caa02d6..1ca960706 100644 --- a/bus/test.c +++ b/bus/test.c @@ -292,7 +292,7 @@ bus_context_new_test (const DBusString *test_data_dir, } dbus_error_init (&error); - context = bus_context_new (&config_file, FALSE, NULL, NULL, NULL, FALSE, FALSE, &error); + context = bus_context_new (&config_file, BUS_CONTEXT_FLAG_NONE, NULL, NULL, NULL, &error); if (context == NULL) { _DBUS_ASSERT_ERROR_IS_SET (&error); |