summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2008-03-06 23:38:48 +0000
committerKjartan Maraas <kmaraas@src.gnome.org>2008-03-06 23:38:48 +0000
commit004af2fae7badd8779c2e9d0a99d86c1324a2247 (patch)
tree799dc69ce14e9ad23c7e23cd907af3879233da5f
parentcae351b0f7b94c35d1bced3ba8f21d6d225cbb56 (diff)
downloadgvfs-004af2fae7badd8779c2e9d0a99d86c1324a2247.tar.gz
Remove unused vars.
2008-03-07 Kjartan Maraas <kmaraas@gnome.org> * client/httpuri.c: Remove unused vars. svn path=/trunk/; revision=1593
-rw-r--r--ChangeLog1
-rw-r--r--client/httpuri.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6664d53d..a41a472c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2008-03-07 Kjartan Maraas <kmaraas@gnome.org>
+ * client/httpuri.c: Remove unused vars.
* daemon/gvfsbackenddav.c: Remove a couple
of unused variables.
diff --git a/client/httpuri.c b/client/httpuri.c
index 600d2d72..8b48671a 100644
--- a/client/httpuri.c
+++ b/client/httpuri.c
@@ -198,7 +198,6 @@ http_to_uri (GVfsUriMapper *mapper,
gboolean allow_utf8)
{
char *res;
- const char *uri;
const char *type;
const char *host;
const char *user;
@@ -209,7 +208,6 @@ http_to_uri (GVfsUriMapper *mapper,
if (strcmp (type, "http") == 0)
{
- uri = g_vfs_uri_mount_info_get (info, "uri");
res = g_strdup (g_vfs_uri_mount_info_get (info, "uri"));
}
else