linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Stephen Hemminger <shemminger@osdl.org>
To: Jens Axboe <axboe@suse.de>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] gscd - get rid of warning.
Date: Tue, 9 Sep 2003 15:28:41 -0700	[thread overview]
Message-ID: <20030909152841.25f7181f.shemminger@osdl.org> (raw)

Compiler warning on 2.6.0-test5 indicates a problem because of missing equal sign.

diff -Nru a/drivers/cdrom/gscd.c b/drivers/cdrom/gscd.c
--- a/drivers/cdrom/gscd.c	Tue Sep  9 15:25:50 2003
+++ b/drivers/cdrom/gscd.c	Tue Sep  9 15:25:50 2003
@@ -965,7 +965,7 @@
 
 	gscd_queue = blk_init_queue(do_gscd_request, &gscd_lock);
 	if (!gscd_queue) {
-		ret -ENOMEM;
+		ret = -ENOMEM;
 		goto err_out3;
 	}
 

             reply	other threads:[~2003-09-09 22:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-09-09 22:28 Stephen Hemminger [this message]
2003-09-10  7:11 ` [PATCH] gscd - get rid of warning Jens Axboe

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20030909152841.25f7181f.shemminger@osdl.org \
    --to=shemminger@osdl.org \
    --cc=axboe@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).