diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-09-30 08:27:51 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-09-30 08:27:51 +0000 |
commit | 3885ab574bf8290c3748b8bea1bfe3c1119ec441 (patch) | |
tree | 961e147577ee704c63ecf0f07b2be4a69c7e3b31 | |
parent | d4d9800d8881202cbe660a483ea8edddc2f7c0c5 (diff) |
remove stray const, noted by david@
-rw-r--r-- | sbin/fdisk/misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fdisk/misc.h b/sbin/fdisk/misc.h index ab396917c88..cad3672bcf3 100644 --- a/sbin/fdisk/misc.h +++ b/sbin/fdisk/misc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.10 2004/09/18 23:22:05 deraadt Exp $ */ +/* $OpenBSD: misc.h,v 1.11 2004/09/30 08:27:50 otto Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -34,7 +34,7 @@ /* typedefs */ -const struct unit_type { +struct unit_type { char *abbr; int conversion; char *lname; |