summaryrefslogtreecommitdiff
path: root/md
diff options
context:
space:
mode:
Diffstat (limited to 'md')
-rw-r--r--md/writeup/using_gdb.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/md/writeup/using_gdb.md b/md/writeup/using_gdb.md
index 75e0bf3..3346e41 100644
--- a/md/writeup/using_gdb.md
+++ b/md/writeup/using_gdb.md
@@ -35,8 +35,6 @@ load file.elf
file file.elf
```
-###
-
## Setting breakpoints
### Speific address
@@ -57,13 +55,13 @@ file file.elf
(gdb) break src/main.c:12
```
-###List breakpoints
+### List breakpoints
```bash
(gdb) info b
```
-##Delete breakpoints
+### Delete breakpoints
```bash
(gdb) clear src/main.c:12
```