All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] block/cciss: Close continue statement with semicolon to fix build
@ 2010-12-21  9:42 Stefan Schmidt
  2010-12-21 10:09 ` Jens Axboe
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Schmidt @ 2010-12-21  9:42 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Mike Miller, iss_storagedev, linux-kernel, Stefan Schmidt

This fixes the following build error:
drivers/block/cciss.c: In function ‘cciss_revalidate’:
drivers/block/cciss.c:2839: error: expected ‘;’ before ‘if’
make[2]: *** [drivers/block/cciss.o] Error 1

Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
---
 drivers/block/cciss.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index 233e06c..8e0f925 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -2835,7 +2835,7 @@ static int cciss_revalidate(struct gendisk *disk)
 
 	for (logvol = 0; logvol < CISS_MAX_LUN; logvol++) {
 		if (!h->drv[logvol])
-			continue
+			continue;
 		if (memcmp(h->drv[logvol]->LunID, drv->LunID,
 			sizeof(drv->LunID)) == 0) {
 			FOUND = 1;
-- 
1.7.2.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-12-21 10:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-21  9:42 [PATCH] block/cciss: Close continue statement with semicolon to fix build Stefan Schmidt
2010-12-21 10:09 ` Jens Axboe
2010-12-21 10:31   ` Stefan Schmidt
2010-12-21 10:32     ` Jens Axboe
2010-12-21 10:39       ` Stefan Schmidt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.