summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-14 11:50:29 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-14 11:50:29 (GMT)
commit736b616092f91fc0863a82851620ec2e095212cb (patch)
tree334ad7dd6919572fd9781ec896918548730d6720 /src
parentbea3337108fa5b59b8f6fdbe016d5ed6a6300bc6 (diff)
Fixed a compilation warning.
Diffstat (limited to 'src')
-rw-r--r--src/mangling/context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mangling/context.c b/src/mangling/context.c
index 4b3e1d4..2e97e68 100644
--- a/src/mangling/context.c
+++ b/src/mangling/context.c
@@ -180,7 +180,7 @@ GBinRoutine *g_demangling_context_get_decoded_routine(GDemanglingContext *contex
GDataType *g_demangling_context_get_decoded_type(GDemanglingContext *context, const char *desc)
{
- GBinRoutine *result; /* Construction à remonter */
+ GDataType *result; /* Construction à remonter */
if (G_DEMANGLING_CONTEXT_GET_CLASS(context)->demangle_type(context, desc))
{