summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/pipebuffer
diff options
context:
space:
mode:
authorRob Clark <robdclark@gmail.com>2016-02-16 12:54:03 -0500
committerRob Clark <robclark@freedesktop.org>2016-02-18 17:10:55 -0500
commit5051d85b031ff17d77a3c0e7dde1e7884e0b2f05 (patch)
treeea011b8de991b4768996d6e927d596c187abb94e /src/gallium/auxiliary/pipebuffer
parentbba836ea6a9674ec3459fb66a540ac697c827031 (diff)
downloadexternal_mesa3d-5051d85b031ff17d77a3c0e7dde1e7884e0b2f05.zip
external_mesa3d-5051d85b031ff17d77a3c0e7dde1e7884e0b2f05.tar.gz
external_mesa3d-5051d85b031ff17d77a3c0e7dde1e7884e0b2f05.tar.bz2
gallium/auxiliary: fix new gcc6 warnings
src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c: In function ‘mm_bufmgr_create_from_buffer’: src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c:288:4: warning: statement is indented as if it were guarded by... [-Wmisleading-indentation] if(mm->map) ^~ src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c:286:1: note: ...this ‘if’ clause, but it is not if(mm->heap) ^~ Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer')
-rw-r--r--src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
index 14de61b..023a028 100644
--- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
+++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
@@ -283,8 +283,8 @@ mm_bufmgr_create_from_buffer(struct pb_buffer *buffer,
return SUPER(mm);
failure:
-if(mm->heap)
- u_mmDestroy(mm->heap);
+ if(mm->heap)
+ u_mmDestroy(mm->heap);
if(mm->map)
pb_unmap(mm->buffer);
FREE(mm);