aboutsummaryrefslogtreecommitdiff
path: root/stand/libsa/gpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'stand/libsa/gpt.c')
-rw-r--r--stand/libsa/gpt.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/stand/libsa/gpt.c b/stand/libsa/gpt.c
index 46e67a9c9a2d..0ba3f0ee1985 100644
--- a/stand/libsa/gpt.c
+++ b/stand/libsa/gpt.c
@@ -24,9 +24,6 @@
* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/gpt.h>
@@ -79,7 +76,7 @@ gptupdate(const char *which, struct dsk *dskp, struct gpt_hdr *hdr,
hdr->hdr_crc_table = crc32(0, Z_NULL, 0);
hdr->hdr_crc_table = crc32(hdr->hdr_crc_table, (const Bytef *)table,
hdr->hdr_entries * hdr->hdr_entsz);
- hdr->hdr_crc_self = crc32(0, Z_NULL, 0);;
+ hdr->hdr_crc_self = crc32(0, Z_NULL, 0);
hdr->hdr_crc_self = crc32(hdr->hdr_crc_self, (const Bytef *)hdr,
hdr->hdr_size);
bzero(secbuf, DEV_BSIZE);