Fixed indentation

This commit is contained in:
Jesse van den Kieboom 2006-01-08 16:33:48 +00:00
parent a24b6058f6
commit 2782ec6fd9
1 changed files with 19 additions and 24 deletions

View File

@ -255,6 +255,7 @@ gm_fetch_handle_free(GmFetchHandle *g) {
for (tmp = g->source_uri; tmp; tmp = tmp->next) {
gnome_vfs_uri_unref((GnomeVFSURI*)(tmp->data));
}
g_list_free(g->source_uri);
@ -277,12 +278,6 @@ gm_fetch_handle_create(GFunc cb, gpointer user_data) {
g->prev_phase = -1;
g->cur_file = -1;
g->prev_file = -1;
g->source_uri = NULL;
g->dest_uri = NULL;
g->cur_file_name = NULL;
g->files_total = 0;
g->done = FALSE;
g->aborted = FALSE;
return g;
}