Update FSF address
[lttv.git] / lttv / modules / gui / detailedevents / events.c
index 5a4675463f864f3c9d4fc1bdb552eb66a47e6e11..174d0e837f59d852872333005e5bff78e6224a75 100644 (file)
@@ -13,8 +13,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, 
- * MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA 02110-1301, USA.
  */
 
 
@@ -53,9 +53,6 @@
 #include <gdk/gdkx.h>
 #include <string.h>
 
-#include <ltt/ltt.h>
-#include <ltt/event.h>
-#include <ltt/trace.h>
 #include <lttv/lttv.h>
 #include <lttv/module.h>
 #include <lttv/hook.h>
@@ -530,7 +527,6 @@ static void request_background_data(EventViewerData *event_viewer_data)
   gint num_traces = ts->traces->len;
   gint i;
   LttvTrace *trace;
-  LttvTraceState *tstate;
 
   LttvHooks *background_ready_hook = 
     lttv_hooks_new();
@@ -1424,7 +1420,7 @@ gboolean update_current_time(void * hook_data, void * call_data)
     
        event_viewer_data->currently_selected_position = 
          lttv_traceset_create_current_position(ts);
-       g_debug("update_current_time: %p %d", event_viewer_data->currently_selected_position,  event_viewer_data->currently_selected_position->timestamp);
+       g_debug("update_current_time: %p %lu", event_viewer_data->currently_selected_position,  event_viewer_data->currently_selected_position->timestamp);
   }
 
   event_viewer_data->report_position = FALSE;
@@ -1445,7 +1441,7 @@ gboolean update_current_position(void * hook_data, void * call_data)
   
   if(lttv_traceset_position_compare(
         event_viewer_data->currently_selected_position, current_pos) != 0) {
-    g_debug("Update current pos: %p, %d", current_pos, current_pos->timestamp);
+    g_debug("Update current pos: %p, %lu", current_pos, current_pos->timestamp);
                 event_viewer_data->currently_selected_position = current_pos;
       /* Simply update the current time : it is in the list */
       event_update_selection(event_viewer_data);
This page took 0.023124 seconds and 4 git commands to generate.