aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--_notes/gdb.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/_notes/gdb.md b/_notes/gdb.md
index 5e649ea..6ca5a28 100644
--- a/_notes/gdb.md
+++ b/_notes/gdb.md
@@ -28,7 +28,7 @@ Core dumps
| List dumps | `coredumpctl`
| Debug the last dump | `coredumpctl gdb`
| Extract the last dump | `coredumpctl dump -o core`
- {: .table .table-bordered .table-condensed }
+ {: .table .table-bordered }
</div>
.gdbinit
@@ -63,7 +63,7 @@ Basics
| Step over line | `n`
| Step over instruction | `si`
| Step out of frame | `fin`
-{: .table .table-bordered .table-condensed }
+{: .table .table-bordered }
</div>
@@ -87,7 +87,7 @@ Data inspection
| Disassemble all code sections | `objdump -d /proc/self/exe`
| Disassemble a single section | `objdump -d -j .init /proc/self/exe`
| Display the section contents | `objdump -s -j .data /proc/self/exe`
-{: .table .table-bordered .table-condensed }
+{: .table .table-bordered }
</div>