summaryrefslogtreecommitdiff
path: root/tools/d2c/helpers.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-04-02 11:58:42 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-04-02 12:39:30 (GMT)
commit1db4ef323b7a76093356ae76268132f3760e1631 (patch)
treefec36ee0ec1b6b2010b62ca4177edca0e31e2114 /tools/d2c/helpers.c
parent1bc80837dde03a32b5ab185067f7bd4c499a9850 (diff)
Rewritten the whole instruction definition format.
Diffstat (limited to 'tools/d2c/helpers.c')
-rw-r--r--tools/d2c/helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/d2c/helpers.c b/tools/d2c/helpers.c
index 8cc71cb..3f79bc1 100644
--- a/tools/d2c/helpers.c
+++ b/tools/d2c/helpers.c
@@ -125,7 +125,7 @@ char *make_callable(const char *raw, bool details)
{
max = strlen(result) + 1;
result = (char *)realloc(result, max);
- memmove(result + 1, result, max - 1);
+ memmove(result + 1, result, max);
result[0] = '_';
}