From a4a07b0955dfe6d77e046db346b69e48c7d29066 Mon Sep 17 00:00:00 2001 From: nima Date: Wed, 29 Oct 2008 07:04:19 +0000 Subject: Upstream. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@77 abc39116-655e-4be6-ad55-d661dc543056 --- vpdopt.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vpdopt.h') diff --git a/vpdopt.h b/vpdopt.h index 378766f..fceb552 100644 --- a/vpdopt.h +++ b/vpdopt.h @@ -2,7 +2,7 @@ * Command line handling of vpddecode * This file is part of the dmidecode project. * - * (C) 2005 Jean Delvare + * Copyright (C) 2005-2006 Jean Delvare * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,16 +30,16 @@ struct string_keyword struct opt { - const char* devmem; + const char *devmem; unsigned int flags; const struct string_keyword *string; }; extern struct opt opt; -#define FLAG_VERSION (1<<0) -#define FLAG_HELP (1<<1) -#define FLAG_DUMP (1<<2) -#define FLAG_QUIET (1<<3) +#define FLAG_VERSION (1 << 0) +#define FLAG_HELP (1 << 1) +#define FLAG_DUMP (1 << 2) +#define FLAG_QUIET (1 << 3) int parse_command_line(int argc, char * const argv[]); void print_help(void); -- cgit