From a96d3de6b30feccd00db6951976febf437460c62 Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Thu, 30 May 2002 21:03:02 +0000 Subject: [PATCH] Fix syntax errors (labels with no statement following). --- lib/libvgl/bitmap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libvgl/bitmap.c b/lib/libvgl/bitmap.c index f84139d3410a..f42ce451e68d 100644 --- a/lib/libvgl/bitmap.c +++ b/lib/libvgl/bitmap.c @@ -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: + ; } }