summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/format
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 /plugins/pychrysalide/format
parent13c6b1b9fabf3b75c69e70489ab53abbd300c5fb (diff)
Typo.
Diffstat (limited to 'plugins/pychrysalide/format')
-rw-r--r--plugins/pychrysalide/format/format.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/format/format.c b/plugins/pychrysalide/format/format.c
index 3bfc705..15abcf7 100644
--- a/plugins/pychrysalide/format/format.c
+++ b/plugins/pychrysalide/format/format.c
@@ -318,7 +318,7 @@ static PyObject *py_binary_format_find_next_symbol_at(PyObject *self, PyObject *
* *
* Description : Recherche le symbole correspondant à une adresse. *
* *
-* Retour : Tuple (nom, décallage) ou Py_None. *
+* Retour : Tuple (nom, décalage) ou Py_None. *
* *
* Remarques : - *
* *
@@ -332,7 +332,7 @@ static PyObject *py_binary_format_resolve_symbol(PyObject *self, PyObject *args)
int ret; /* Bilan de lecture des args. */
GBinFormat *format; /* Format de binaire manipulé */
GBinSymbol *symbol; /* Enventuel symbole trouvé */
- phys_t diff; /* Décallage éventuel mesuré */
+ phys_t diff; /* Décalage éventuel mesuré */
bool found; /* Bilan de la recherche */
ret = PyArg_ParseTuple(args, "Op", &py_vmpa, &strict);