unnecessary check removed
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Mon, 16 Aug 2004 05:24:55 +0000 (05:24 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Mon, 16 Aug 2004 05:24:55 +0000 (05:24 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@791 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/ltt/tracefile.c

index b614170a14445678ac0059e99d270cf2a6e5dcd3..aea40ab4d51cc351c9d4f9bce9038afecc83a38d 100644 (file)
@@ -1795,10 +1795,8 @@ static inline gint getFieldtypeSize(LttTracefile * t,
           }      
           size = offset2;
         }else size = fld->field_size;
-        if(unlikely(!evD)){
-          fld->fixed_root    = (offsetRoot==-1)   ? 0 : 1;
-          fld->fixed_parent  = (offsetParent==-1) ? 0 : 1;
-        }
+        fld->fixed_root    = (offsetRoot==-1)   ? 0 : 1;
+        fld->fixed_parent  = (offsetParent==-1) ? 0 : 1;
         break;
 
       default:
This page took 0.024325 seconds and 4 git commands to generate.