mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix bit value for a debug flag definition.
Pointy hat to: gavin
This commit is contained in:
parent
358bca3bc6
commit
3656b9615b
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ enum {
|
|||
RUN_DEBUG_RSSI = 0x00004000, /* dump RSSI lookups */
|
||||
RUN_DEBUG_RESET = 0x00008000, /* initialization progress */
|
||||
RUN_DEBUG_CALIB = 0x00010000, /* calibration progress */
|
||||
RUN_DEBUG_CMD = 0x00010000, /* command queue */
|
||||
RUN_DEBUG_CMD = 0x00020000, /* command queue */
|
||||
RUN_DEBUG_ANY = 0xffffffff
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue