]> spindle.queued.net Git - midori/commitdiff
Merge two g_file_test calls into one
authorChristian Dywan <christian@twotoasts.de>
Fri, 23 Jan 2009 20:43:28 +0000 (21:43 +0100)
committerChristian Dywan <christian@twotoasts.de>
Fri, 23 Jan 2009 20:43:28 +0000 (21:43 +0100)
midori/sokoke.c

index 543b2630829eda41b1e849eb342ba490ea09a162..e0f29b9704d53ff3b8d920fa5c59ee995a4982e1 100644 (file)
@@ -142,8 +142,7 @@ sokoke_magic_uri (const gchar* uri,
     if (g_path_is_absolute (uri))
         return g_strconcat ("file://", uri, NULL);
     /* Construct an absolute path if the file is relative */
-    if (g_file_test (uri, G_FILE_TEST_EXISTS)
-        && g_file_test (uri, G_FILE_TEST_IS_REGULAR))
+    if (g_file_test (uri, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))
     {
         current_dir = g_get_current_dir ();
         result = g_strconcat ("file://", current_dir,