fix back textcontree tree compare function : was allright before
[lttv.git] / ltt / branches / poly / lttv / lttv / tracecontext.c
index 5c2a17cb33b1ac349a1a609fe88d7098104b5494..03cee2cca190717b05e880ddcaf1d73e0f1e59db 100644 (file)
@@ -39,7 +39,7 @@ gint compare_tracefile(gconstpointer a, gconstpointer b)
   const LttvTracefileContext *trace_b = (const LttvTracefileContext *)b;
 
   if(likely(trace_a != trace_b)) {
-    comparison = ltt_time_compare(trace_b->timestamp, trace_a->timestamp);
+    comparison = ltt_time_compare(trace_a->timestamp, trace_b->timestamp);
     if(unlikely(comparison == 0)) {
       if(trace_a->index < trace_b->index) comparison = -1;
       else if(trace_a->index > trace_b->index) comparison = 1;
This page took 0.024423 seconds and 4 git commands to generate.