diff options
author | haxar <[email protected]> | 2012-06-13 21:30:39 -0700 |
---|---|---|
committer | haxar <[email protected]> | 2012-06-13 21:30:39 -0700 |
commit | d69f6a09152b52c371216592936ff9ed6bb6f36c (patch) | |
tree | e8c6f36a1adcb14090602b3e003c2e3063750ab1 /src/caja-location-entry.c | |
parent | 7509b2aba6103d4c3c88b82b36b12a8a3a9329be (diff) | |
download | caja-d69f6a09152b52c371216592936ff9ed6bb6f36c.tar.bz2 caja-d69f6a09152b52c371216592936ff9ed6bb6f36c.tar.xz |
remove extra bracket
Diffstat (limited to 'src/caja-location-entry.c')
-rw-r--r-- | src/caja-location-entry.c | 2 |
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, |