#ifdef SWAPOFF const char *argp_program_version = STANDARD_HURD_VERSION (swapoff); + +static int require_signature = 0; +static int ignore_signature = 1; #else const char *argp_program_version = STANDARD_HURD_VERSION (swapon); + +static int require_signature = 1; +static int ignore_signature = 0; #endif
Maybe I'm just strange, but I would prefer the definition of the variable to be outside the #if block, and only the initialisation inside it. While I know the compiler doesn't have a problem with this, it feels like the scope is limited to the #if block, like it would be with if.
I don't care much about it, though, so you can just ignore this message if you like. ;-)
Thanks, Bas
-- I encourage people to send encrypted e-mail (see http://www.gnupg.org). If you have problems reading my e-mail, use a better reader. Please send the central message of e-mails as plain text in the message body, not as HTML and definitely not as MS Word. Please do not use the MS Word format for attachments either. For more information, see http://129.125.47.90/e-mail.html
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Bug-hurd mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-hurd
