summaryrefslogtreecommitdiff
path: root/vpdopt.h
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2008-10-26 12:50:21 +0000
committerJean Delvare <jdelvare@suse.de>2008-10-26 12:50:21 +0000
commitf1ea8d3be965182ae75549894b125708b7e6e5bf (patch)
tree980acb3a19879f4489b4d76d1145f4aead0d8dd5 /vpdopt.h
parenta488d9a5c1b6b79fff218b9838c312c26505ab9e (diff)
downloaddmidecode-git-f1ea8d3be965182ae75549894b125708b7e6e5bf.tar.gz
Mass coding-style change: add spaces around operators.
Diffstat (limited to 'vpdopt.h')
-rw-r--r--vpdopt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/vpdopt.h b/vpdopt.h
index 205b272..fceb552 100644
--- a/vpdopt.h
+++ b/vpdopt.h
@@ -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);