Fix --param=ranger-debug=all to include a trace.

A recent change made each debug flag its own value, but the 'all' value was
not adjusted properly and 'trace' was left out.

	* flag-types.h (RANGER_DEBUG_ALL): Fix values.
This commit is contained in:
Andrew MacLeod 2021-11-01 16:40:45 -04:00
parent fc40767520
commit 309bb7ff6e
1 changed files with 2 additions and 1 deletions

View File

@ -458,7 +458,8 @@ enum ranger_debug
RANGER_DEBUG_GORI = 4,
RANGER_DEBUG_TRACE_GORI = (RANGER_DEBUG_TRACE | RANGER_DEBUG_GORI),
RANGER_DEBUG_TRACE_CACHE = (RANGER_DEBUG_TRACE | RANGER_DEBUG_CACHE),
RANGER_DEBUG_ALL = (RANGER_DEBUG_GORI | RANGER_DEBUG_CACHE)
RANGER_DEBUG_ALL = (RANGER_DEBUG_GORI | RANGER_DEBUG_CACHE
| RANGER_DEBUG_TRACE)
};
/* EVRP mode. */