Mesa (master): nir: Fix a bit of broken indentation.

Eric Anholt anholt at kemper.freedesktop.org
Thu Jan 29 19:46:45 UTC 2015


Module: Mesa
Branch: master
Commit: 68d476167c0d23e3f050ce3a882fc7b741c18d09
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=68d476167c0d23e3f050ce3a882fc7b741c18d09

Author: Eric Anholt <eric at anholt.net>
Date:   Tue Nov 11 14:08:13 2014 -0800

nir: Fix a bit of broken indentation.

Reviewed-by: Matt Turner <mattst88 at gmail.com>
Reviewed-by: Jason Ekstrand <jason.ekstrand at intel.com>

---

 src/glsl/nir/nir.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/glsl/nir/nir.c b/src/glsl/nir/nir.c
index 25cdac0..10e6ed3 100644
--- a/src/glsl/nir/nir.c
+++ b/src/glsl/nir/nir.c
@@ -1295,7 +1295,7 @@ nir_instr_insert_before_cf(nir_cf_node *node, nir_instr *before)
 void
 nir_instr_insert_after_cf(nir_cf_node *node, nir_instr *after)
 {
-      if (node->type == nir_cf_node_block) {
+   if (node->type == nir_cf_node_block) {
       nir_instr_insert_after_block(nir_cf_node_as_block(node), after);
    } else {
       nir_cf_node *next = nir_cf_node_next(node);




More information about the mesa-commit mailing list