diff options
| author | Oz Linden <oz@lindenlab.com> | 2019-09-24 15:08:45 -0400 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2019-09-24 15:08:45 -0400 |
| commit | 581b6fe5234110efa9c27751ed2c9e062ae8f248 (patch) | |
| tree | 24af287f9923981f0653a9651a1ac89379f19178 /indra/llcommon/llleap.cpp | |
| parent | d0619f8e476c1c5118ae926dfe1746f1dda986d8 (diff) | |
simplify function pointer logging
Diffstat (limited to 'indra/llcommon/llleap.cpp')
| -rw-r--r-- | indra/llcommon/llleap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llleap.cpp b/indra/llcommon/llleap.cpp index bb32c73d04..1c0678e453 100644 --- a/indra/llcommon/llleap.cpp +++ b/indra/llcommon/llleap.cpp @@ -67,7 +67,7 @@ public: // this class or method name. mListener(new LLLeapListener(boost::bind(&LLLeapImpl::connect, this, _1, _2))) { - LL_DEBUGS("FatalHook") << "previous fatal hook was " <<reinterpret_cast<void*>(mPrevFatalHook) << LL_ENDL; + LL_DEBUGS("FatalHook") << "previous fatal hook was " << (mPrevFatalHook ? "non-null" : "null") << LL_ENDL; // Rule out unpopulated Params block if (! cparams.executable.isProvided()) { |
