diff options
Diffstat (limited to 'src/format/dwarf/utils.h')
-rw-r--r-- | src/format/dwarf/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/format/dwarf/utils.h b/src/format/dwarf/utils.h index fc5b3fc..e5102e2 100644 --- a/src/format/dwarf/utils.h +++ b/src/format/dwarf/utils.h @@ -34,10 +34,10 @@ /* Lit une valeur Little Endian Base 128 signée. */ -bool read_leb128(dwarf_format *, off_t *, int64_t *); +bool read_leb128(dwarf_format *, off_t *, int64_t *, bool); /* Lit une valeur Little Endian Base 128 non signée. */ -bool read_uleb128(dwarf_format *, off_t *, uint64_t *); +bool read_uleb128(dwarf_format *, off_t *, uint64_t *, bool); /* Lit une valeur représentant une longueur d'unité. */ bool read_unit_length(dwarf_format *, off_t *, off_t *); |