linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Art Haas <ahaas@airmail.net>
To: linux-kernel@vger.kernel.org, Kendrick Smith <kmsmith@umich.edu>,
	Andy Adamson <andros@umich.edu>,
	nfs@lists.sourceforge.net
Cc: Linus Torvalds <torvalds@transmeta.com>
Subject: [PATCH] Fix C99 initializers in fs/nfs/nfs4proc.c
Date: Wed, 23 Apr 2003 10:17:42 -0500	[thread overview]
Message-ID: <20030423151742.GA5681@debian> (raw)

Hi.

Here's a small patch that fixes missing '=' characters from the
initializers. The patch is against the current BK.

Art Haas

===== fs/nfs/nfs4proc.c 1.20 vs edited =====
--- 1.20/fs/nfs/nfs4proc.c	Mon Apr  7 17:47:19 2003
+++ edited/fs/nfs/nfs4proc.c	Wed Apr 23 10:11:43 2003
@@ -572,10 +572,10 @@
 	u32                     f_bmres[2];
 	u32                     d_bmres[2];
 	struct nfs_fattr        d_attr = {
-		.valid          0,
+		.valid          = 0,
 	};
 	struct nfs_fattr        f_attr = {
-		.valid          0,
+		.valid          = 0,
 	};
 	struct nfs4_getattr     f_getattr = {
 		.gt_bmval       = nfs4_fattr_bitmap,
-- 
To announce that there must be no criticism of the President, or that we
are to stand by the President, right or wrong, is not only unpatriotic
and servile, but is morally treasonable to the American public.
 -- Theodore Roosevelt, Kansas City Star, 1918

                 reply	other threads:[~2003-04-23 16:30 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=20030423151742.GA5681@debian \
    --to=ahaas@airmail.net \
    --cc=andros@umich.edu \
    --cc=kmsmith@umich.edu \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nfs@lists.sourceforge.net \
    --cc=torvalds@transmeta.com \
    /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).