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

Author: Keith Whitwell <[email protected]>
Date:   Sun Mar 28 09:30:55 2010 -0700

aux/tgsi: fix some minor glitches in string routines

Not sure why we are open-coding these rather than using standard
library functions.

---

 src/gallium/auxiliary/tgsi/tgsi_text.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_text.c 
b/src/gallium/auxiliary/tgsi/tgsi_text.c
index f918151..0b468a9 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_text.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_text.c
@@ -55,7 +55,7 @@ static boolean is_digit_alpha_underscore( const char *cur )
    return is_digit( cur ) || is_alpha_underscore( cur );
 }
 
-static boolean uprcase( char c )
+static char uprcase( char c )
 {
    if (c >= 'a' && c <= 'z')
       return c += 'A' - 'a';
@@ -76,7 +76,7 @@ streq_nocase_uprcase(const char *str1,
       str1++;
       str2++;
    }
-   return TRUE;
+   return *str1 == 0 && *str2 == 0;
 }
 
 static boolean str_match_no_case( const char **pcur, const char *str )

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to