From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqO4U-0001lc-U0 for qemu-devel@nongnu.org; Wed, 13 Apr 2016 12:55:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aqO4U-0001Ly-1Z for qemu-devel@nongnu.org; Wed, 13 Apr 2016 12:55:18 -0400 Date: Wed, 13 Apr 2016 18:55:05 +0200 From: Kevin Wolf Message-ID: <20160413165505.GC4624@noname.redhat.com> References: <7a8456be516dae2be739c358fb6b114cddd3efbd.1458702790.git.jcody@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7a8456be516dae2be739c358fb6b114cddd3efbd.1458702790.git.jcody@redhat.com> Subject: Re: [Qemu-devel] [PATCH for-2.6 7/7] block/vpc: update comments to be compliant w/coding guidelines List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jeff Cody Cc: qemu-block@nongnu.org, qemu-devel@nongnu.org, stefanha@redhat.com, grantwwu@gmail.com, sbaugh@catern.com Am 23.03.2016 um 04:33 hat Jeff Cody geschrieben: > Signed-off-by: Jeff Cody > --- > block/vpc.c | 70 ++++++++++++++++++++++++++++++------------------------------- > 1 file changed, 35 insertions(+), 35 deletions(-) > > diff --git a/block/vpc.c b/block/vpc.c > index 5dd9950..0b48cf4 100644 > --- a/block/vpc.c > +++ b/block/vpc.c > @@ -36,7 +36,7 @@ > > #define HEADER_SIZE 512 > > -//#define CACHE > +/* #define CACHE */ I'll revert this one while applying, C99 style is much more convenient when you want to enable debugging and we're doing the same in other places. The rest of them is good. Kevin