Diff between b8a6a0e8f7386fb26049f6778f2ec77c4d209d71 and caaf52e6a2130cb38df0e092fce707cb5c613715
Changed Files
| File | Additions | Deletions | Status |
| monitor/packet.c | +1 | -1 | modified |
Full Patch
diff --git a/monitor/packet.c b/monitor/packet.c
index e5c2953..27cef10 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -1040,7 +1040,7 @@ static void print_power_type(uint8_t type)
static void print_power_level(int8_t level, const char *type)
{
print_field("TX power%s%s%s: %d dBm",
- type ? " (" : "", type, type ? ")" : "", level);
+ type ? " (" : "", type ? type : "", type ? ")" : "", level);
}
static void print_sync_flow_control(uint8_t enable)