diff options
author | 2011-03-01 17:34:59 -0800 | |
---|---|---|
committer | 2011-03-01 22:13:40 -0800 | |
commit | 60f9a621e899ed7fa176e12f1b57f10afa5a5d66 (patch) | |
tree | 42f7d0bbbc11fa355b13caa4da4eac0ca23d3cd0 /libs/rs/rsContext.cpp | |
parent | 9c4086a6765cca1eb215f9a307038544b295792b (diff) |
Almost all warnings are now errors in RS build.
Change-Id: Ie22eccdafbc95d1f903c73007dd3fb0ad10af7cc
Diffstat (limited to 'libs/rs/rsContext.cpp')
-rw-r--r-- | libs/rs/rsContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp index 2e6ea1243d9c..4a5620d098fc 100644 --- a/libs/rs/rsContext.cpp +++ b/libs/rs/rsContext.cpp @@ -741,7 +741,7 @@ Context::~Context() { mWorkers.mLaunchSignals[ct].set(); } for (uint32_t ct = 0; ct < mWorkers.mCount; ct++) { - int status = pthread_join(mWorkers.mThreadId[ct], &res); + status = pthread_join(mWorkers.mThreadId[ct], &res); } rsAssert(!mWorkers.mRunningCount); |