diff options
author | Kenneth Graunke <[email protected]> | 2010-02-18 23:50:55 -0800 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-02-19 07:51:02 -0500 |
commit | 21d0c70b4b1c18dc1c3ac7d0fbd8a903d60f8be7 (patch) | |
tree | 59e54ca5138fd305d6b2ac6682a77797c813e1ad /src/mesa/shader/atifragshader.c | |
parent | f69d1d1438361f10fd8db78d2d38f26e33db9747 (diff) |
Remove _mesa_strlen in favor of plain strlen.
Diffstat (limited to 'src/mesa/shader/atifragshader.c')
-rw-r--r-- | src/mesa/shader/atifragshader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/atifragshader.c b/src/mesa/shader/atifragshader.c index 28dbf77b666..3e26c43c480 100644 --- a/src/mesa/shader/atifragshader.c +++ b/src/mesa/shader/atifragshader.c @@ -115,7 +115,7 @@ create_dst_mod_str(GLuint mod) if (mod & GL_SATURATE_BIT_ATI) strncat(ret_str, "|SAT", 1024); - if (_mesa_strlen(ret_str) == 0) + if (strlen(ret_str) == 0) strncat(ret_str, "NONE", 1024); return ret_str; } |