[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20120620053303.GC11330@thor.bakeyournoodle.com>
Date: Wed, 20 Jun 2012 15:33:03 +1000
From: Tony Breeds <tony@...eyournoodle.com>
To: Ted Ts'o <tytso@....edu>
Cc: Andreas Dilger <adilger@...ger.ca>, linux-ext4@...r.kernel.org
Subject: Re: Minimal configuration for e2fsprogs
On Wed, Jun 20, 2012 at 03:26:05PM +1000, Tony Breeds wrote:
> diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c
> index cf80bd0..0c27b1e 100644
> --- a/debugfs/debugfs.c
> +++ b/debugfs/debugfs.c
> @@ -2194,6 +2194,7 @@ void do_punch(int argc, char *argv[])
>
> void do_dump_mmp(int argc EXT2FS_ATTR((unused)), char *argv[])
> {
> +#if CONFIG_MMP
Eeek this should be #ifdef oops.
We could also do:
void do_dump_mmp(int argc EXT2FS_ATTR((unused)), char *argv[])
{
#ifndef CONFIG_MMP
fprintf(.....);
return;
#endif
....
}
to avoid the #else and make the approach more consistent with the rest
of the patch.
Yours Tony
Content of type "application/pgp-signature" skipped
Powered by blists - more mailing lists