renamed curl_thread to my_thread to avoid confusion

This commit is contained in:
Daniel Stenberg 2004-11-22 13:43:52 +00:00
parent 855a9eff76
commit b7a6b78e0c
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ int my_progress_func(GtkWidget *Bar,
return 0; return 0;
} }
void *curl_thread(void *ptr) void *my_thread(void *ptr)
{ {
CURL *curl; CURL *curl;
CURLcode res; CURLcode res;
@ -94,7 +94,7 @@ int main(int argc, char **argv)
gtk_container_add(GTK_CONTAINER(Frame2), Bar); gtk_container_add(GTK_CONTAINER(Frame2), Bar);
gtk_widget_show_all(Window); gtk_widget_show_all(Window);
if (!g_thread_create(&curl_thread, argv[1], FALSE, NULL) != 0) if (!g_thread_create(&my_thread, argv[1], FALSE, NULL) != 0)
g_warning("can't create the thread"); g_warning("can't create the thread");