diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-22 17:29:38 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-22 17:29:38 +0000 |
commit | 0c2bb2151b3b6f78f75195d615cab8d7e0d797a5 (patch) | |
tree | ac915a8360f8910f88d925344e90e06c5502fb23 /sbin/pdisk/partition_map.h | |
parent | b1147a4c95a791bbee778f6035f3a450d1ad12ad (diff) |
Whitespace fixes.
Diffstat (limited to 'sbin/pdisk/partition_map.h')
-rw-r--r-- | sbin/pdisk/partition_map.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/sbin/pdisk/partition_map.h b/sbin/pdisk/partition_map.h index 6ea3debc366..067ac2fc267 100644 --- a/sbin/pdisk/partition_map.h +++ b/sbin/pdisk/partition_map.h @@ -1,4 +1,4 @@ -/* $OpenBSD: partition_map.h,v 1.23 2016/01/22 04:16:25 krw Exp $ */ +/* $OpenBSD: partition_map.h,v 1.24 2016/01/22 17:29:37 krw Exp $ */ /* * partition_map.h - partition map routines @@ -34,36 +34,36 @@ #include "file_media.h" struct partition_map_header { - char *name; - struct partition_map * disk_order; - struct partition_map * base_order; - struct block0 *misc; - int fd; - int changed; - int physical_block; /* must be == sbBlockSize */ - int logical_block; /* must be <= physical_block */ - int blocks_in_map; - int maximum_in_map; - unsigned long media_size; /* in logical_blocks */ + char *name; + struct partition_map *disk_order; + struct partition_map *base_order; + struct block0 *misc; + int fd; + int changed; + int physical_block; /* must be == sbBlockSize */ + int logical_block; /* must be <= physical_block */ + int blocks_in_map; + int maximum_in_map; + unsigned long media_size; /* in logical_blocks */ }; struct partition_map { - struct partition_map * next_on_disk; - struct partition_map * prev_on_disk; - struct partition_map * next_by_base; - struct partition_map * prev_by_base; - long disk_address; - struct partition_map_header * the_map; - int contains_driver; - struct dpme *data; + struct partition_map *next_on_disk; + struct partition_map *prev_on_disk; + struct partition_map *next_by_base; + struct partition_map *prev_by_base; + struct partition_map_header *the_map; + struct dpme *data; + long disk_address; + int contains_driver; }; -extern const char * kFreeType; -extern const char * kMapType; -extern const char * kUnixType; -extern const char * kHFSType; -extern const char * kFreeName; -extern const char * kPatchType; +extern const char *kFreeType; +extern const char *kMapType; +extern const char *kUnixType; +extern const char *kHFSType; +extern const char *kFreeName; +extern const char *kPatchType; extern int dflag; extern int lflag; |