diff options
Diffstat (limited to 'plugins/caldav/caldav-browse-server.c')
-rw-r--r-- | plugins/caldav/caldav-browse-server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/caldav/caldav-browse-server.c b/plugins/caldav/caldav-browse-server.c index 8b2d1ae0e4..e7d6140646 100644 --- a/plugins/caldav/caldav-browse-server.c +++ b/plugins/caldav/caldav-browse-server.c @@ -271,18 +271,18 @@ add_collection_node_to_tree (GtkTreeStore *store, GtkTreeIter *parent_iter, cons /* pick the last non-empty path part */ gint idx = 0; - while (tmp [idx]) { + while (tmp[idx]) { idx++; } idx--; - while (idx >= 0 && !tmp [idx][0]) { + while (idx >= 0 && !tmp[idx][0]) { idx--; } if (idx >= 0) - path = tmp [idx]; + path = tmp[idx]; } displayname = soup_uri_decode (path); |