diff options
author | Alan Conway <aconway@apache.org> | 2006-10-24 21:13:01 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-10-24 21:13:01 +0000 |
commit | b2b4d120e145687358e3e448678619079798fb77 (patch) | |
tree | 8aa5a2a7af785516abcdc2c4fae0796dd5e32086 /cpp/src | |
parent | 6920d8261ca0cdbb7e547a756a32dfd067cd15bc (diff) | |
download | qpid-python-b2b4d120e145687358e3e448678619079798fb77.tar.gz |
Makefile support for optimized release build. Do make BUILD=RELEASE.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@467486 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/io/LFProcessor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/io/LFProcessor.cpp b/cpp/src/qpid/io/LFProcessor.cpp index dba5d6c962..dabbdbecae 100644 --- a/cpp/src/qpid/io/LFProcessor.cpp +++ b/cpp/src/qpid/io/LFProcessor.cpp @@ -102,8 +102,8 @@ bool LFProcessor::empty(){ return count == 0; } -void LFProcessor::poll(){ - apr_status_t status; +void LFProcessor::poll() { + apr_status_t status = APR_EGENERAL; do{ current = 0; if(!stopped){ |