Fixed missing semicolon.

This commit is contained in:
Carl Worth 2002-08-07 19:49:36 +00:00
parent 9ee45ab816
commit c44bf18e78
2 changed files with 2 additions and 2 deletions

View file

@ -106,7 +106,7 @@ _XrSurfaceDestroyXcSurface(XrSurface *surface)
void
XrSurfaceSetDrawable(XrSurface *surface, Drawable drawable)
{
_XrSurfaceDestroyXcSurface(surface)
_XrSurfaceDestroyXcSurface(surface);
surface->drawable = drawable;

View file

@ -106,7 +106,7 @@ _XrSurfaceDestroyXcSurface(XrSurface *surface)
void
XrSurfaceSetDrawable(XrSurface *surface, Drawable drawable)
{
_XrSurfaceDestroyXcSurface(surface)
_XrSurfaceDestroyXcSurface(surface);
surface->drawable = drawable;