Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : forget to remove unused variables
authorMarion Guthmuller <marion.guthmuller@loria.fr>
Fri, 5 Oct 2012 17:26:25 +0000 (19:26 +0200)
committerMarion Guthmuller <marion.guthmuller@loria.fr>
Fri, 5 Oct 2012 17:26:25 +0000 (19:26 +0200)
src/mc/mc_compare.c

index 1ca61f0..232fe72 100644 (file)
@@ -179,11 +179,10 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){
   }
 
   /* Stacks comparison */
-  unsigned int cursor = 1, cursor2 = 0;
+  unsigned int cursor = 1;
   stack_region_t stack_region1, stack_region2;
   void *sp1, *sp2;
   int diff = 0, diff_local = 0;
-  heap_equality_t equality;
 
   while(cursor < xbt_dynar_length(stacks1)){
     XBT_INFO("Stack %d", cursor + 1);