diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-01-24 17:16:59 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-01-24 17:16:59 (GMT) |
commit | b758d4da4a8e15f84b0a43cb4f7f76f997fda6f7 (patch) | |
tree | 9dd8099a9fc4ba0246b15961598ae77f42cb544e /src/common | |
parent | 13c6b1b9fabf3b75c69e70489ab53abbd300c5fb (diff) |
Typo.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/leb128.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/leb128.c b/src/common/leb128.c index 67d8a6b..c6218bf 100644 --- a/src/common/leb128.c +++ b/src/common/leb128.c @@ -42,7 +42,7 @@ bool read_uleb128(uleb128_t *target, const bin_t *data, phys_t *pos, phys_t len) { - int shift; /* Décallage à appliquer */ + int shift; /* Décalage à appliquer */ phys_t i; /* Boucle de parcours */ shift = 0; @@ -84,7 +84,7 @@ bool read_uleb128(uleb128_t *target, const bin_t *data, phys_t *pos, phys_t len) bool read_leb128(leb128_t *target, const bin_t *data, phys_t *pos, phys_t len) { - int shift; /* Décallage à appliquer */ + int shift; /* Décalage à appliquer */ phys_t i; /* Boucle de parcours */ shift = 0; |