From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43766) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVfZx-0000vE-1b for qemu-devel@nongnu.org; Mon, 23 Jan 2017 09:26:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVfZv-0006J1-Vz for qemu-devel@nongnu.org; Mon, 23 Jan 2017 09:26:41 -0500 Received: from mx1.redhat.com ([209.132.183.28]:41442) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVfZv-0006Iv-Pw for qemu-devel@nongnu.org; Mon, 23 Jan 2017 09:26:39 -0500 From: "Daniel P. Berrange" Date: Mon, 23 Jan 2017 14:26:24 +0000 Message-Id: <20170123142629.11110-4-berrange@redhat.com> In-Reply-To: <20170123142629.11110-1-berrange@redhat.com> References: <20170123142629.11110-1-berrange@redhat.com> Subject: [Qemu-devel] [PULL v1 3/8] io: fix typo in docs for QIOTask List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , "Daniel P. Berrange" The GDestroyNotify parameter is already a pointer, so does not need a '*' suffix on the type. Reviewed-by: Eric Blake Signed-off-by: Daniel P. Berrange --- include/io/task.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/io/task.h b/include/io/task.h index c268eb0..1407747 100644 --- a/include/io/task.h +++ b/include/io/task.h @@ -49,7 +49,7 @@ typedef int (*QIOTaskWorker)(QIOTask *task, * void myobject_operation(QMyObject *obj, * QIOTaskFunc *func, * gpointer opaque, - * GDestroyNotify *notify); + * GDestroyNotify notify); * * * @@ -67,7 +67,7 @@ typedef int (*QIOTaskWorker)(QIOTask *task, * void myobject_operation(QMyObject *obj, * QIOTaskFunc *func, * gpointer opaque, - * GDestroyNotify *notify) + * GDestroyNotify notify) * { * QIOTask *task; * @@ -154,7 +154,7 @@ typedef int (*QIOTaskWorker)(QIOTask *task, * SocketAddress *addr, * QIOTaskFunc *func, * gpointer opaque, - * GDestroyNotify *notify) + * GDestroyNotify notify) * { * QIOTask *task; * SocketAddress *addrCopy; -- 2.9.3