Fix syntax errors (labels with no statement following).

This commit is contained in:
Garrett Wollman 2002-05-30 21:03:02 +00:00
parent d7c98975c5
commit a96d3de6b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97629

View File

@ -170,6 +170,7 @@ WriteVerticalLine(VGLBitmap *dst, int x, int y, int width, byte *line)
bcopy(line, address, width * dst->PixelBytes);
break;
default:
;
}
}
@ -284,6 +285,7 @@ ReadVerticalLine(VGLBitmap *src, int x, int y, int width, byte *line)
bcopy(address, line, width * src->PixelBytes);
break;
default:
;
}
}