llvmpipe: fix upper/lower-case typo
authorBrian Paul <brianp@vmware.com>
Thu, 17 Dec 2009 21:26:48 +0000 (14:26 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 17 Dec 2009 21:26:48 +0000 (14:26 -0700)
src/gallium/drivers/llvmpipe/lp_bld_flow.c

index 420d062fc7202cb27e71fcadc7fb9a76379269b7..fe9c6941f743afd820397d5fc5d2c5b0e86c3ce3 100644 (file)
@@ -46,7 +46,7 @@
  * Enumeration of all possible flow constructs.
  */
 enum lp_build_flow_construct_kind {
-   lP_BUILD_FLOW_SCOPE,
+   LP_BUILD_FLOW_SCOPE,
    LP_BUILD_FLOW_SKIP,
 };
 
@@ -200,7 +200,7 @@ lp_build_flow_scope_begin(struct lp_build_flow_context *flow)
 {
    struct lp_build_flow_scope *scope;
 
-   scope = &lp_build_flow_push(flow, lP_BUILD_FLOW_SCOPE)->scope;
+   scope = &lp_build_flow_push(flow, LP_BUILD_FLOW_SCOPE)->scope;
    if(!scope)
       return;
 
@@ -241,7 +241,7 @@ lp_build_flow_scope_declare(struct lp_build_flow_context *flow,
 {
    struct lp_build_flow_scope *scope;
 
-   scope = &lp_build_flow_peek(flow, lP_BUILD_FLOW_SCOPE)->scope;
+   scope = &lp_build_flow_peek(flow, LP_BUILD_FLOW_SCOPE)->scope;
    if(!scope)
       return;
 
@@ -263,7 +263,7 @@ lp_build_flow_scope_end(struct lp_build_flow_context *flow)
 {
    struct lp_build_flow_scope *scope;
 
-   scope = &lp_build_flow_pop(flow, lP_BUILD_FLOW_SCOPE)->scope;
+   scope = &lp_build_flow_pop(flow, LP_BUILD_FLOW_SCOPE)->scope;
    if(!scope)
       return;