]> sjero.net Git - wget/blobdiff - src/convert.c
Fix merge glitches, get it to build.
[wget] / src / convert.c
index 4f90bb3b062c17662ad53b3f260eeeb34cb8703c..00319ddc76e5212fbda84bd1721a0410d998e769 100644 (file)
@@ -73,7 +73,7 @@ convert_links_in_hashtable (struct hash_table *downloaded_set,
   if (downloaded_set)
     cnt = hash_table_count (downloaded_set);
   if (cnt == 0)
-    goto cleanup;
+    return;
   file_array = alloca_array (char *, cnt);
   string_set_to_array (downloaded_set, file_array);
 
@@ -184,7 +184,7 @@ convert_all_links (void)
   secs = ptimer_measure (timer);
   logprintf (LOG_VERBOSE, _("Converted %d files in %s seconds.\n"),
              file_count, print_decimal (secs));
-cleanup:
+
   ptimer_destroy (timer);
 }