From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MtEc4-0003ic-3Q for qemu-devel@nongnu.org; Thu, 01 Oct 2009 01:54:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MtEbj-0003J1-SH for qemu-devel@nongnu.org; Thu, 01 Oct 2009 01:53:46 -0400 Received: from [199.232.76.173] (port=56757 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MtEbj-0003Ib-FO for qemu-devel@nongnu.org; Thu, 01 Oct 2009 01:53:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33407) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MtEbi-0000Ri-T6 for qemu-devel@nongnu.org; Thu, 01 Oct 2009 01:53:39 -0400 Date: Thu, 1 Oct 2009 07:51:38 +0200 From: "Michael S. Tsirkin" Message-ID: <20091001055138.GB5068@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 1/2] tests: missing ; in if 0 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: qemu-devel@nongnu.org Fix missing ; in commented out code Signed-off-by: Michael S. Tsirkin --- tests/sha1.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/sha1.c b/tests/sha1.c index 2557344..3a76555 100644 --- a/tests/sha1.c +++ b/tests/sha1.c @@ -190,7 +190,7 @@ unsigned char c; int j; for (j = 0; j < 4; t >>= 8, j++) - *--fcp = (unsigned char) t + *--fcp = (unsigned char) t; } #else for (i = 0; i < 8; i++) { -- 1.6.5.rc2