diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-22 17:51:26 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-22 17:51:26 +0000 |
commit | 5b833cc1fc353d604310d0912077ca57fa64b508 (patch) | |
tree | b7030407a31fbf472ccf6305174e5da017dbc5a6 | |
parent | 7ccf52e1ac218b6037416c198de7457e84b8fe7e (diff) |
Change parameter name 'data' to 'block0'.
-rw-r--r-- | sbin/pdisk/convert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pdisk/convert.c b/sbin/pdisk/convert.c index 42c2c77366b..8c0282dd089 100644 --- a/sbin/pdisk/convert.c +++ b/sbin/pdisk/convert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: convert.c,v 1.19 2016/01/22 17:49:07 krw Exp $ */ +/* $OpenBSD: convert.c,v 1.20 2016/01/22 17:51:25 krw Exp $ */ /* * convert.c - Little-endian conversion @@ -66,7 +66,7 @@ convert_dpme(struct dpme *data, int to_cpu_form) int -convert_block0(struct block0 *data, int to_cpu_form) +convert_block0(struct block0 *block0, int to_cpu_form) { #if BYTE_ORDER == LITTLE_ENDIAN struct ddmap *m; |