diff options
Diffstat (limited to 'sys/geom/geom.h')
-rw-r--r-- | sys/geom/geom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/geom.h b/sys/geom/geom.h index 018c8f6..a5f35f1 100644 --- a/sys/geom/geom.h +++ b/sys/geom/geom.h @@ -295,9 +295,9 @@ extern struct sx topology_lock; #define GEOMGETCONF _IOWR('G', 0, struct sbuf) /* geom_enc.c */ -uint32_t g_dec_be2(u_char *p); +uint16_t g_dec_be2(u_char *p); uint32_t g_dec_be4(u_char *p); -uint32_t g_dec_le2(u_char *p); +uint16_t g_dec_le2(u_char *p); uint32_t g_dec_le4(u_char *p); uint64_t g_dec_le8(u_char *p); void g_enc_le4(u_char *p, uint32_t u); |