diff options
author | David Robillard <d@drobilla.net> | 2019-07-27 21:44:53 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-07-29 01:59:23 +0200 |
commit | 29940c35f257fe00cbf6ddebd5b56314c728958e (patch) | |
tree | 935b14c1b4d5667fe3c5115776252662f134f857 /pugl/detail/x11_gl.c | |
parent | c74467ae07cc419b913998d96315d0f7ef5d2b21 (diff) | |
download | pugl-29940c35f257fe00cbf6ddebd5b56314c728958e.tar.gz pugl-29940c35f257fe00cbf6ddebd5b56314c728958e.tar.bz2 pugl-29940c35f257fe00cbf6ddebd5b56314c728958e.zip |
Fix various clang-tidy warnings
Diffstat (limited to 'pugl/detail/x11_gl.c')
-rw-r--r-- | pugl/detail/x11_gl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/detail/x11_gl.c b/pugl/detail/x11_gl.c index 7fcf169..929d3a5 100644 --- a/pugl/detail/x11_gl.c +++ b/pugl/detail/x11_gl.c @@ -25,8 +25,8 @@ #include <GL/gl.h> #include <GL/glx.h> -#include <stdlib.h> #include <stdio.h> +#include <stdlib.h> typedef struct { GLXFBConfig fb_config; |