From a3ebec7f0797f4bbea7076d553c5571fc072e5cb Mon Sep 17 00:00:00 2001 From: meancoot Date: Fri, 7 Dec 2012 02:17:34 -0500 Subject: [PATCH] Style fix --- gfx/gl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/gl.c b/gfx/gl.c index 2df33b9fa9..ca99e10f49 100644 --- a/gfx/gl.c +++ b/gfx/gl.c @@ -1000,7 +1000,7 @@ static inline void gl_copy_frame(gl_t *gl, const void *frame, unsigned width, un const unsigned frame_bytes = width * height * gl->base_size; const unsigned line_bytes = width * gl->base_size; - if(gl->tex_pack_buf_size < frame_bytes) + if (gl->tex_pack_buf_size < frame_bytes) { free(gl->tex_pack_buf); gl->tex_pack_buf = malloc(frame_bytes);