]> Dogcows Code - chaz/openbox/blobdiff - obt/paths.c
Add support for loading SVG icons using librsvg.
[chaz/openbox] / obt / paths.c
index aa76b8efd36fbe63f898ffa559ce0164022851a0..25cb6b0eb58c7a4c415f3c24dd7dd2d9d8da8498 100644 (file)
@@ -335,7 +335,7 @@ static inline gboolean try_exec(const ObtPaths *const p,
                                 const gchar *const path)
 {
     struct stat st;
-    BSEARCH_SETUP(guint);
+    BSEARCH_SETUP();
 
     if (stat(path, &st) != 0)
         return FALSE;
@@ -359,7 +359,7 @@ gboolean obt_paths_try_exec(ObtPaths *p, const gchar *path)
         GSList *it;
 
         for (it = p->exec_dirs; it; it = g_slist_next(it)) {
-            gchar *f = g_strdup_printf(it->data, G_DIR_SEPARATOR_S, path);
+            gchar *f = g_build_filename(it->data, path, NULL);
             gboolean e = try_exec(p, f);
             g_free(f);
             if (e) return TRUE;
This page took 0.019734 seconds and 4 git commands to generate.