diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2022-03-14 14:31:24 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2022-03-14 14:31:24 +0000 |
commit | d8650071799764af2c0d44cbcb5de33eed2f74be (patch) | |
tree | 42c859d5875a7bcf879f80ec1157a79f002e68ea /sbin/fdisk | |
parent | 464270363edb86067429dcae456a174fe836a249 (diff) |
And the prototype too.
Diffstat (limited to 'sbin/fdisk')
-rw-r--r-- | sbin/fdisk/part.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fdisk/part.h b/sbin/fdisk/part.h index 7b20ac5c7f9..883ab3340ae 100644 --- a/sbin/fdisk/part.h +++ b/sbin/fdisk/part.h @@ -1,4 +1,4 @@ -/* $OpenBSD: part.h,v 1.34 2022/02/04 14:07:56 krw Exp $ */ +/* $OpenBSD: part.h,v 1.35 2022/03/14 14:31:23 krw Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -37,7 +37,7 @@ void PRT_make(const struct prt *,const uint64_t, const uint64_t, struct dos_partition *); void PRT_print_part(const int, const struct prt *, const char *); void PRT_print_parthdr(void); -char *PRT_uuid_to_typename(const struct uuid *); +const char *PRT_uuid_to_typename(const struct uuid *); int PRT_uuid_to_type(const struct uuid *); struct uuid *PRT_type_to_uuid(const int); int PRT_protected_guid(const struct uuid *); |