Diff for /rpl/src/operations_binaires.c between versions 1.41 and 1.42

version 1.41, 2013/03/21 11:30:31 version 1.42, 2013/03/21 22:11:13
Line 47  longueur_entiers_binaires(struct_process Line 47  longueur_entiers_binaires(struct_process
   
     for(i = 0; i < 6; i++)      for(i = 0; i < 6; i++)
     {      {
         longueur_binaire = (unsigned char) (longueur_binaire +          longueur_binaire = ((unsigned char) longueur_binaire) +
                 ((test_cfsf(s_etat_processus,                  ((unsigned char) (test_cfsf(s_etat_processus,
                 (unsigned char) (37 + i) == d_vrai) ? j : 0)));                  (unsigned char) (37 + i)) == d_vrai) ? j : 0);
         j = (unsigned char) (j << 1);          j = (unsigned char) (j << 1);
     }      }
   

Removed from v.1.41  
changed lines
  Added in v.1.42


CVSweb interface <joel.bertrand@systella.fr>