diff options
author | wollman <wollman@FreeBSD.org> | 2002-05-30 21:03:02 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-05-30 21:03:02 +0000 |
commit | ca04af6ca5ba7d2f2c1ff3bd586d970f3922ac4f (patch) | |
tree | 1c22c4437a7a3c0736deecf2c4dcbb3547fa2842 | |
parent | a50f81e50ad74969c1793362e0db624698fc31d4 (diff) | |
download | FreeBSD-src-ca04af6ca5ba7d2f2c1ff3bd586d970f3922ac4f.zip FreeBSD-src-ca04af6ca5ba7d2f2c1ff3bd586d970f3922ac4f.tar.gz |
Fix syntax errors (labels with no statement following).
-rw-r--r-- | lib/libvgl/bitmap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libvgl/bitmap.c b/lib/libvgl/bitmap.c index f84139d..f42ce45 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 @@ read_planar: bcopy(address, line, width * src->PixelBytes); break; default: + ; } } |