summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhaxar <[email protected]>2012-06-13 21:30:39 -0700
committerhaxar <[email protected]>2012-06-13 21:30:39 -0700
commitd69f6a09152b52c371216592936ff9ed6bb6f36c (patch)
treee8c6f36a1adcb14090602b3e003c2e3063750ab1
parent7509b2aba6103d4c3c88b82b36b12a8a3a9329be (diff)
downloadcaja-d69f6a09152b52c371216592936ff9ed6bb6f36c.tar.bz2
caja-d69f6a09152b52c371216592936ff9ed6bb6f36c.tar.xz
remove extra bracket
-rw-r--r--src/caja-location-entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-location-entry.c b/src/caja-location-entry.c
index e168ac86..c43129e8 100644
--- a/src/caja-location-entry.c
+++ b/src/caja-location-entry.c
@@ -92,7 +92,7 @@ try_to_expand_path (gpointer callback_data)
uri_scheme = g_uri_parse_scheme (user_location);
- if (!g_path_is_absolute (user_location) && uri_scheme == NULL && user_location[0] != '~') {
+ if (!g_path_is_absolute (user_location) && uri_scheme == NULL && user_location[0] != '~')
{
absolute_location = g_build_filename (entry->details->current_directory, user_location, NULL);
suffix = g_filename_completer_get_completion_suffix (entry->details->completer,