Skip to content
Snippets Groups Projects
Commit 7c28768f authored by Peter Xu's avatar Peter Xu Committed by Daniel P. Berrangé
Browse files

qio: rename qio_task_thread_result


It is strange that it was called gio_task_thread_result.  Rename it to
follow the naming rule of the file.

Reviewed-by: default avatarDaniel P. Berrange <berrange@redhat.com>
Signed-off-by: default avatarPeter Xu <peterx@redhat.com>
Signed-off-by: default avatarDaniel P. Berrangé <berrange@redhat.com>
parent f2bb2d14
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ struct QIOTaskThreadData {
};
static gboolean gio_task_thread_result(gpointer opaque)
static gboolean qio_task_thread_result(gpointer opaque)
{
struct QIOTaskThreadData *data = opaque;
......@@ -110,7 +110,7 @@ static gpointer qio_task_thread_worker(gpointer opaque)
* the worker results
*/
trace_qio_task_thread_exit(data->task);
g_idle_add(gio_task_thread_result, data);
g_idle_add(qio_task_thread_result, data);
return NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment