From 84eb85ee30eac2d4baa22f2017d84642ef5bb305 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 22 Oct 2012 09:27:10 +0300 Subject: [PATCH] tools/kvm: Fix formatting in parse-options.h Signed-off-by: Pekka Enberg --- include/kvm/parse-options.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/kvm/parse-options.h b/include/kvm/parse-options.h index a8a25d0..cc188b9 100644 --- a/include/kvm/parse-options.h +++ b/include/kvm/parse-options.h @@ -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); }))