stand: Nuke double-semicolons

A distinct number of double-semicolons have ended up in FreeBSD.  Take a
pass at getting rid of many of these harmless typos.

Reviewed by: emaste, imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/609
Differential Revision: https://reviews.freebsd.org/D31717
This commit is contained in:
Elliott Mitchell 2021-08-16 15:51:38 -07:00 committed by Warner Losh
parent 21cc0918c7
commit 798ea06f07
2 changed files with 2 additions and 2 deletions

View file

@ -1190,7 +1190,7 @@ gfx_fb_copy_line(teken_gfx_t *state, int ncol, teken_pos_t *s, teken_pos_t *d)
screen_buffer[doffset + x] = screen_buffer[soffset + x];
if (mark) {
/* update end point */
sr.tr_end.tp_col = s->tp_col + x;;
sr.tr_end.tp_col = s->tp_col + x;
} else {
/* set up new rectangle */
mark = true;

View file

@ -79,7 +79,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);