summaryrefslogtreecommitdiff
path: root/src/arch/processor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/processor.c')
-rw-r--r--src/arch/processor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/processor.c b/src/arch/processor.c
index c8630d7..103296a 100644
--- a/src/arch/processor.c
+++ b/src/arch/processor.c
@@ -249,11 +249,11 @@ GArchProcessor *get_arch_processor_for_type(ArchProcessorType type)
* *
******************************************************************************/
-GArchProcessor *get_arch_processor_from_format(const exe_format *format)
+GArchProcessor *get_arch_processor_from_format(const GExeFormat *format)
{
GArchProcessor *result; /* Conversion à retourner */
- switch (get_exe_target_machine(format))
+ switch (g_exe_format_get_target_machine(format))
{
case FTM_JVM:
result = get_arch_processor_for_type(APT_JVM);