diff options
author | midipix <writeonce@midipix.org> | 2015-12-06 09:39:42 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-10 23:35:31 -0500 |
commit | 44d7e6e04a6c6fa6cc03b36d42ac3b7856fe0184 (patch) | |
tree | d8f698daa2bf0d113be331bfcf62fe019686a8f3 /src/driver | |
parent | b5c6e6b6969328711658c248d0725f543573939e (diff) | |
download | perk-44d7e6e04a6c6fa6cc03b36d42ac3b7856fe0184.tar.bz2 perk-44d7e6e04a6c6fa6cc03b36d42ac3b7856fe0184.tar.xz |
API redesign 10/10: whitespace meditation.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/pe_driver_ctx.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c index aacc2e6..e5df2a5 100644 --- a/src/driver/pe_driver_ctx.c +++ b/src/driver/pe_driver_ctx.c @@ -44,10 +44,10 @@ static const struct argv_option options[] = { }; struct pe_driver_ctx_alloc { - struct argv_meta * meta; + struct argv_meta * meta; struct pe_driver_ctx_impl ctx; - uint64_t guard; - const char * units[]; + uint64_t guard; + const char * units[]; }; static uint32_t pe_argv_flags(uint32_t flags) @@ -124,15 +124,15 @@ int pe_get_driver_ctx( struct pe_driver_ctx ** pctx) { struct pe_driver_ctx_impl * ctx; - struct argv_meta * meta; - struct argv_entry * entry; - size_t nunits; - uint64_t dflags; - uint64_t fflags; - const char * program; - const char * output; - const char * pretty; - int fdout; + struct argv_meta * meta; + struct argv_entry * entry; + size_t nunits; + uint64_t dflags; + uint64_t fflags; + const char * program; + const char * output; + const char * pretty; + int fdout; if (!(meta = argv_get(argv,options,pe_argv_flags(flags)))) return -1; |