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/main/cpuinfo.c | |
parent | f69d1d1438361f10fd8db78d2d38f26e33db9747 (diff) |
Remove _mesa_strlen in favor of plain strlen.
Diffstat (limited to 'src/mesa/main/cpuinfo.c')
-rw-r--r-- | src/mesa/main/cpuinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/cpuinfo.c b/src/mesa/main/cpuinfo.c index b4bfb40eb1d..79fcbc71c29 100644 --- a/src/mesa/main/cpuinfo.c +++ b/src/mesa/main/cpuinfo.c @@ -103,7 +103,7 @@ _mesa_get_cpu_string(void) #endif - assert(_mesa_strlen(buffer) < MAX_STRING); + assert(strlen(buffer) < MAX_STRING); return buffer; } |