From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57174) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB2nA-0007Gk-N9 for qemu-devel@nongnu.org; Mon, 21 Dec 2015 10:54:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aB2n5-0003ZH-NM for qemu-devel@nongnu.org; Mon, 21 Dec 2015 10:54:32 -0500 Received: from resqmta-po-03v.sys.comcast.net ([2001:558:fe16:19:96:114:154:162]:55956) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB2n5-0003Ym-HF for qemu-devel@nongnu.org; Mon, 21 Dec 2015 10:54:27 -0500 From: Eric Blake Date: Mon, 21 Dec 2015 08:54:17 -0700 Message-Id: <1450713257-17108-1-git-send-email-eblake@redhat.com> Subject: [Qemu-devel] [PATCH] crypto: Fix typo in example List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org The example code wouldn't even compile, since it did not use a consistent spelling for the Error ** parameter. Signed-off-by: Eric Blake --- include/crypto/tlssession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/crypto/tlssession.h b/include/crypto/tlssession.h index b38fe69..d356a8d 100644 --- a/include/crypto/tlssession.h +++ b/include/crypto/tlssession.h @@ -56,7 +56,7 @@ * * static int mysock_run_tls(int sockfd, * QCryptoTLSCreds *creds, - * Error *erp) + * Error *errp) * { * QCryptoTLSSession *sess; * -- 2.4.3