diff options
| author | tkusumi <tkusumi@NetBSD.org> | 2019-12-15 09:22:28 +0000 |
|---|---|---|
| committer | tkusumi <tkusumi@NetBSD.org> | 2019-12-15 09:22:28 +0000 |
| commit | d5c19d0a2c3aaba1bfb20fbc8cf19049d89f6917 (patch) | |
| tree | 77da5ad0be12c544691734607a3eaf117308c80e /sys/dev/dm/dm_table.c | |
| parent | 2eb9a2ae16c3f8819f06c8c23a8e6ae5553dc0cd (diff) | |
dm: "unsigned" -> "unsigned int" for consistency
Use either one, but not both.
Diffstat (limited to 'sys/dev/dm/dm_table.c')
| -rw-r--r-- | sys/dev/dm/dm_table.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/dm/dm_table.c b/sys/dev/dm/dm_table.c index 64304820fed..e549585fdbc 100644 --- a/sys/dev/dm/dm_table.c +++ b/sys/dev/dm/dm_table.c @@ -1,4 +1,4 @@ -/* $NetBSD: dm_table.c,v 1.13 2019/12/14 10:49:30 tkusumi Exp $ */ +/* $NetBSD: dm_table.c,v 1.14 2019/12/15 09:22:28 tkusumi Exp $ */ /* * Copyright (c) 2008 The NetBSD Foundation, Inc. @@ -29,7 +29,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: dm_table.c,v 1.13 2019/12/14 10:49:30 tkusumi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dm_table.c,v 1.14 2019/12/15 09:22:28 tkusumi Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -226,12 +226,12 @@ dm_inactive_table_size(dm_table_head_t *head) * Return combined disk geometry */ void -dm_table_disksize(dm_table_head_t *head, uint64_t *numsecp, unsigned *secsizep) +dm_table_disksize(dm_table_head_t *head, uint64_t *numsecp, unsigned int *secsizep) { dm_table_t *tbl; dm_table_entry_t *table_en; uint64_t length; - unsigned secsize, tsecsize; + unsigned int secsize, tsecsize; uint8_t id; length = 0; |
