aboutsummaryrefslogtreecommitdiff
path: root/src/asm
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-08-01 20:36:51 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit4ca3b74621c3608de42a91730a71892d9d7c27b5 (patch)
treeae6ed7a1c37fc7fe32b3f763b839e65fe6becbeb /src/asm
parent0f26e1d204d3a3026ca3edfc4c6bd9638b2632e7 (diff)
Remove nullable... it's bad to have magic. Static analysis can do it instead
Diffstat (limited to 'src/asm')
-rw-r--r--src/asm/x86_64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asm/x86_64.c b/src/asm/x86_64.c
index 16e6bc6..e246fbc 100644
--- a/src/asm/x86_64.c
+++ b/src/asm/x86_64.c
@@ -382,4 +382,4 @@ int asm_ret(Asm *self, u16 bytes) {
am_memcpy(self->code_it, &bytes, sizeof(bytes));
}
return 0;
-} \ No newline at end of file
+}