From: Tyler <tyler@agat.net>
To: kernel-janitors@vger.kernel.org
Subject: [KJ][PATCH] linux-2.6.11 : warning fix in fs/quota_v2.c
Date: Tue, 08 Mar 2005 11:04:59 +0000 [thread overview]
Message-ID: <d0k0sm$lu1$1@sea.gmane.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 43 bytes --]
The format %zd should be replaced by %d :)
[-- Attachment #2: write_quota_warning_fix.patch --]
[-- Type: text/x-patch, Size: 512 bytes --]
--- linux-2.6.11-eb/fs/quota_v2.c.orig 2005-03-08 11:58:06.000000000 +0100
+++ linux-2.6.11-eb/fs/quota_v2.c 2005-03-08 11:58:28.000000000 +0100
@@ -396,7 +396,7 @@ static int v2_write_dquot(struct dquot *
/* dq_off is guarded by dqio_sem */
if (!dquot->dq_off)
if ((ret = dq_insert_tree(dquot)) < 0) {
- printk(KERN_ERR "VFS: Error %zd occurred while creating quota.\n", ret);
+ printk(KERN_ERR "VFS: Error %d occurred while creating quota.\n", ret);
return ret;
}
spin_lock(&dq_data_lock);
reply other threads:[~2005-03-08 11:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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='d0k0sm$lu1$1@sea.gmane.org' \
--to=tyler@agat.net \
--cc=kernel-janitors@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 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.