Added missing semicolon
authorMatthew Leibowitz <mattleibow@live.com>
Mon, 15 May 2017 16:20:06 +0000 (18:20 +0200)
committerMatthew Leibowitz <mattleibow@live.com>
Mon, 15 May 2017 16:20:06 +0000 (18:20 +0200)
src/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp

index 6e8b2b0..f714cb2 100644 (file)
@@ -61,7 +61,7 @@ static GrGLFuncPtr glx_get(void* ctx, const char name[]) {
 
     SkASSERT(nullptr != ctx);
     const GLXProcGetter* getter = (const GLXProcGetter*) ctx;
-    SkASSERT(nullptr != getter->getCurrentContext())
+    SkASSERT(nullptr != getter->getCurrentContext());
     return getter->getProc(reinterpret_cast<const GLubyte*>(name));
 }