From: Emil Velikov Date: Wed, 14 Oct 2015 17:11:11 +0000 (+0100) Subject: pipe-loader: don't mix code and variable declarations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7999e6ddba38016964cbc33b98b4658e900bcd3c;p=mesa.git pipe-loader: don't mix code and variable declarations We cannot use this C99 feature here quite yet, as the code needs to be build with MSVC prior to 2013. Signed-off-by: Emil Velikov Acked-by: Rob Clark --- diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c index e7804d34e79..b5dfc56f49d 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c @@ -238,8 +238,9 @@ pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev) for (i = DRM_RENDER_NODE_MIN_MINOR, j = 0; i <= DRM_RENDER_NODE_MAX_MINOR; i++) { - fd = open_drm_render_node_minor(i); struct pipe_loader_device *dev; + + fd = open_drm_render_node_minor(i); if (fd < 0) continue;