diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2011-01-12 07:51:14 -0800 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2011-01-12 07:51:14 -0800 |
commit | bcb5b209d1813681202524362dd186c8b0982357 (patch) | |
tree | e2d8c8c6448f2476123fd8e590665f7f20fe1a20 /indra/llimage/llimage.cpp | |
parent | 7daa3d1ca10199468946feef0ce8eb67489deee0 (diff) |
trivial: fix some mac compiling errors
Diffstat (limited to 'indra/llimage/llimage.cpp')
-rw-r--r-- | indra/llimage/llimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index c99313f0ea..3baaa25617 100644 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -148,7 +148,7 @@ void LLImageBase::deleteMemory(void* p) } else { - delete[] p ; + delete[] (char*)p ; } } |