diff options
author | Ryan Lortie <desrt@desrt.ca> | 2010-05-24 23:18:36 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2010-05-24 23:18:36 -0400 |
commit | 26dc76a0f59cc5449c024429edf50f4263261ff1 (patch) | |
tree | 01c94346c7d3f5d3e9fc67909a193f8c4ea240d3 /bin | |
parent | 873d7386d1ed64f8d542366a5d560f0ec7ba7cab (diff) | |
download | dconf-26dc76a0f59cc5449c024429edf50f4263261ff1.tar.gz |
'list' updates
- move to new GSettingsBackend API
- add 'length' parameter, update callers
Diffstat (limited to 'bin')
-rw-r--r-- | bin/dconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dconf.c b/bin/dconf.c index 5252f4a..e6eea16 100644 --- a/bin/dconf.c +++ b/bin/dconf.c @@ -170,7 +170,7 @@ do_sync_command (DConfClient *client, if (!ensure ("dir", dir, dconf_is_dir, error)) return FALSE; - list = dconf_client_list (client, dir, NULL); + list = dconf_client_list (client, dir, NULL, NULL); while (*list) g_print ("%s\n", *list++); |