diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-10-24 23:41:21 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-10-24 23:42:35 +0200 |
commit | 041b54fef20668abaab5bcc7b52dfc31695c25d2 (patch) | |
tree | e7484fa323f26162fa21dad9887c36771200bf99 /sal/rtl/source/alloc_arena.c | |
parent | fb95e1d94538ff7847f0597be756ff289a5608f5 (diff) |
Avoid Clang -Wunused-value with trunk rev. 12226 Valgrind.
Diffstat (limited to 'sal/rtl/source/alloc_arena.c')
-rw-r--r-- | sal/rtl/source/alloc_arena.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/rtl/source/alloc_arena.c b/sal/rtl/source/alloc_arena.c index 5984f7525400..39364818b1c0 100644 --- a/sal/rtl/source/alloc_arena.c +++ b/sal/rtl/source/alloc_arena.c @@ -1100,7 +1100,7 @@ SAL_CALL rtl_arena_free ( /* DEBUG ONLY: mark unallocated, undefined */ VALGRIND_MEMPOOL_FREE(arena, segment->m_addr); - /* OSL_DEBUG_ONLY() */ VALGRIND_MAKE_MEM_UNDEFINED(segment->m_addr, segment->m_size); + /* OSL_DEBUG_ONLY() */ (void) VALGRIND_MAKE_MEM_UNDEFINED(segment->m_addr, segment->m_size); OSL_DEBUG_ONLY(memset((void*)(segment->m_addr), 0x33333333, segment->m_size)); /* coalesce w/ adjacent free segment(s) */ |