diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-08 22:28:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-08 22:28:23 +0800 |
commit | 77eb9e0a46e70a80964608514fbeefe9e4102fc1 (patch) | |
tree | ea6c6707c112dea218e241a46a9fcbb637996567 /embed | |
parent | 31cc6e632786972c77459572e971e254110f221b (diff) | |
download | gsoc2013-epiphany-77eb9e0a46e70a80964608514fbeefe9e4102fc1.tar gsoc2013-epiphany-77eb9e0a46e70a80964608514fbeefe9e4102fc1.tar.gz gsoc2013-epiphany-77eb9e0a46e70a80964608514fbeefe9e4102fc1.tar.bz2 gsoc2013-epiphany-77eb9e0a46e70a80964608514fbeefe9e4102fc1.tar.lz gsoc2013-epiphany-77eb9e0a46e70a80964608514fbeefe9e4102fc1.tar.xz gsoc2013-epiphany-77eb9e0a46e70a80964608514fbeefe9e4102fc1.tar.zst gsoc2013-epiphany-77eb9e0a46e70a80964608514fbeefe9e4102fc1.zip |
Remove trailing / in invocation of mkdir, since it's unneeded and not
2004-02-08 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-favicon-cache.c: (ephy_favicon_cache_init):
Remove trailing / in invocation of mkdir, since it's unneeded and not
portable. Patch by Julio M. Merino Vidal, fixes bug 133738.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-favicon-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index df2815855..222f67f5b 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -206,7 +206,7 @@ ephy_favicon_cache_init (EphyFaviconCache *cache) NULL); cache->priv->directory = g_build_filename (ephy_dot_dir (), - "favicon_cache/", + "favicon_cache", NULL); if (g_file_test (cache->priv->directory, G_FILE_TEST_IS_DIR) == FALSE) |