summaryrefslogtreecommitdiff
path: root/src/common/leb128.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/leb128.c')
-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;