From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40007) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cPAVr-00065R-LD for qemu-devel@nongnu.org; Thu, 05 Jan 2017 11:03:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cPAVr-0000KK-1Z for qemu-devel@nongnu.org; Thu, 05 Jan 2017 11:03:35 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59154) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cPAVq-0000KD-SE for qemu-devel@nongnu.org; Thu, 05 Jan 2017 11:03:34 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E64E68AE68 for ; Thu, 5 Jan 2017 16:03:34 +0000 (UTC) From: "Daniel P. Berrange" Date: Thu, 5 Jan 2017 16:03:16 +0000 Message-Id: <20170105160321.21786-4-berrange@redhat.com> In-Reply-To: <20170105160321.21786-1-berrange@redhat.com> References: <20170105160321.21786-1-berrange@redhat.com> Subject: [Qemu-devel] [PATCH 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 The GDestroyNotify parameter is already a pointer, so does not need a '*' suffix on the type. 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