summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-01-24 17:16:59 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-01-24 17:16:59 (GMT)
commitb758d4da4a8e15f84b0a43cb4f7f76f997fda6f7 (patch)
tree9dd8099a9fc4ba0246b15961598ae77f42cb544e /src/common
parent13c6b1b9fabf3b75c69e70489ab53abbd300c5fb (diff)
Typo.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/leb128.c4
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;