Avoid unused variables

svn path=/trunk/; revision=7690
This commit is contained in:
Matthias Clasen
2008-11-28 07:02:57 +00:00
parent 6417df2a91
commit c5938128ec
2 changed files with 14 additions and 4 deletions

View File

@@ -115,11 +115,13 @@ g_local_vfs_parse_name (GVfs *vfs,
{
GFile *file;
char *filename;
char *user_name;
char *user_prefix;
const char *user_start, *user_end;
char *rest;
#ifdef HAVE_PWD_H
struct passwd *passwd_file_entry;
char *user_name;
#endif
g_return_val_if_fail (G_IS_VFS (vfs), NULL);
g_return_val_if_fail (parse_name != NULL, NULL);