diff options
Diffstat (limited to 'src/format/mangling')
| -rw-r--r-- | src/format/mangling/itanium/abi.c | 8 | ||||
| -rw-r--r-- | src/format/mangling/itanium/component-int.h | 2 | ||||
| -rw-r--r-- | src/format/mangling/itanium/component.c | 4 | ||||
| -rw-r--r-- | src/format/mangling/itanium/component.h | 2 | 
4 files changed, 8 insertions, 8 deletions
| diff --git a/src/format/mangling/itanium/abi.c b/src/format/mangling/itanium/abi.c index d0a8e37..5645a05 100644 --- a/src/format/mangling/itanium/abi.c +++ b/src/format/mangling/itanium/abi.c @@ -1321,7 +1321,7 @@ static itanium_component *itd_special_name(GItaniumDContext *context)      itanium_component *result;              /* Construction à retourner    */      char next;                              /* Caractère suivant           */      char peek;                              /* Prochain caractère lu       */ -    itanium_component *offset1;             /* Décallage extrait #1        */ +    itanium_component *offset1;             /* Décalage extrait #1         */      itanium_component *encoding;            /* Encodage suivant            */      /** @@ -1453,7 +1453,7 @@ static itanium_component *itd_call_offset(GItaniumDContext *context)  static itanium_component *itd_nv_offset(GItaniumDContext *context)  {      itanium_component *result;              /* Construction à retourner    */ -    ssize_t offset;                         /* Décallage obtenu            */ +    ssize_t offset;                         /* Décalage obtenu             */      /**       * La règle traitée ici est la suivante : @@ -1487,8 +1487,8 @@ static itanium_component *itd_nv_offset(GItaniumDContext *context)  static itanium_component *itd_v_offset(GItaniumDContext *context)  {      itanium_component *result;              /* Construction à retourner    */ -    ssize_t offset;                         /* Décallage obtenu #1         */ -    ssize_t voffset;                        /* Décallage obtenu #2         */ +    ssize_t offset;                         /* Décalage obtenu #1          */ +    ssize_t voffset;                        /* Décalage obtenu #2          */      /**       * La règle traitée ici est la suivante : diff --git a/src/format/mangling/itanium/component-int.h b/src/format/mangling/itanium/component-int.h index e6d86b6..3d4c1d0 100644 --- a/src/format/mangling/itanium/component-int.h +++ b/src/format/mangling/itanium/component-int.h @@ -44,7 +44,7 @@ struct _itanium_component          /* ICT_NON_VIRTUAL_OFFSET */          /* ICT_VIRTUAL_OFFSET */ -        ssize_t offset;                     /* Décallage de fonction       */ +        ssize_t offset;                     /* Décalage de fonction        */          /* ICT_TYPE */          GDataType *dtype;                   /* Type instancié              */ diff --git a/src/format/mangling/itanium/component.c b/src/format/mangling/itanium/component.c index 1173c17..c2edc17 100644 --- a/src/format/mangling/itanium/component.c +++ b/src/format/mangling/itanium/component.c @@ -329,8 +329,8 @@ itanium_component *itd_make_operator(GItaniumDContext *context, const itanium_op  /******************************************************************************  *                                                                             *  *  Paramètres  : context = contexte de décodage à utiliser.                   * -*                type    = type exacte de décallage.                          * -*                offset  = décallage extrait de l'encodage.                   * +*                type    = type exacte de décalage.                           * +*                offset  = décalage extrait de l'encodage.                    *  *                                                                             *  *  Description : Construit un composant dans un contexte Itanium.             *  *                                                                             * diff --git a/src/format/mangling/itanium/component.h b/src/format/mangling/itanium/component.h index cc00d47..6aa4e57 100644 --- a/src/format/mangling/itanium/component.h +++ b/src/format/mangling/itanium/component.h @@ -75,7 +75,7 @@ typedef enum _ItaniumComponentType      /**       * Fonctions virtuelles. -     *  -> décallage : 'offset'. +     *  -> décalage : 'offset'.       *  -> fonctions simples : 'binary'.       *  -> fonctions complexes : 'ternary'.       */ | 
