tools/kvm: Fix formatting in parse-options.h

Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
Pekka Enberg
2012-10-22 09:27:10 +03:00
committed by Will Deacon
parent e9e1906bfb
commit 84eb85ee30
+10 -10
View File
@@ -83,17 +83,17 @@ typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
* CALLBACKS can use it like they want.
*/
struct option {
enum parse_opt_type type;
int short_name;
const char *long_name;
void *value;
const char *argh;
const char *help;
void *ptr;
enum parse_opt_type type;
int short_name;
const char *long_name;
void *value;
const char *argh;
const char *help;
void *ptr;
int flags;
parse_opt_cb *callback;
intptr_t defval;
int flags;
parse_opt_cb *callback;
intptr_t defval;
};
#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))