diff --git a/monitor/l2cap.c b/monitor/l2cap.c
index 383d49c..c70d050 100644
--- a/monitor/l2cap.c
+++ b/monitor/l2cap.c
#include "packet.h"
#include "l2cap.h"
-#define print_field(fmt, args...) printf("%-12c" fmt "\n", ' ', ## args)
+#define print_field(fmt, args...) printf("%-10c" fmt "\n", ' ', ## args)
struct sig_opcode_data {
uint8_t opcode;
diff --git a/monitor/packet.c b/monitor/packet.c
index e5f9e75..76c3793 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
printf("%s\n", line);
}
-#define print_field(fmt, args...) printf("%-12c" fmt "\n", ' ', ## args)
+#define print_field(fmt, args...) printf("%-10c" fmt "\n", ' ', ## args)
static const struct {
uint8_t error;
str[47] = ' ';
str[48] = ' ';
str[65] = '\0';
- print_text(COLOR_WHITE, "%-12c%s\n", ' ', str);
+ print_text(COLOR_WHITE, "%-10c%s\n", ' ', str);
str[0] = ' ';
}
}
str[47] = ' ';
str[48] = ' ';
str[65] = '\0';
- print_text(COLOR_WHITE, "%-12c%s\n", ' ', str);
+ print_text(COLOR_WHITE, "%-10c%s\n", ' ', str);
}
}