--- rpl/src/fusible.c 2010/08/09 13:51:47 1.14 +++ rpl/src/fusible.c 2010/08/10 18:02:43 1.15 @@ -134,14 +134,19 @@ fusible(void *argument) } # else - if ((*s_etat_processus).langue == 'F') - { - printf("+++Attention : Support indisponible sous OS/2\n"); - } - else - { - printf("+++Attention : Function unavailable\n"); - } + + struct_processus *s_etat_processus; + + s_etat_processus = argument; + + if ((*s_etat_processus).langue == 'F') + { + printf("+++Attention : Support indisponible sous OS/2\n"); + } + else + { + printf("+++Attention : Function unavailable\n"); + } # endif pthread_exit(NULL);