From: Peter Xu Date: Mon, 5 Mar 2018 06:43:19 +0000 (+0800) Subject: qio: rename qio_task_thread_result X-Git-Tag: v2.12.0-rc0~45^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7c28768fef4bbd7601b26c4efca4ced9c0651356;p=thirdparty%2Fqemu.git 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: Daniel P. Berrange Signed-off-by: Peter Xu Signed-off-by: Daniel P. Berrangé --- diff --git a/io/task.c b/io/task.c index 3ce556017c1..1a0a1c7185e 100644 --- a/io/task.c +++ b/io/task.c @@ -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; }