diff --git a/sflphone-gtk/src/accountlist.c b/sflphone-gtk/src/accountlist.c
index 34d482e3333c04d161a72c02c469d3eb813173f8..8e9654eb8661b2bfc612f9a30d0c205b89739094 100644
--- a/sflphone-gtk/src/accountlist.c
+++ b/sflphone-gtk/src/accountlist.c
@@ -214,7 +214,7 @@ guint
 account_list_get_registered_accounts( void )
 {
   guint res = 0;
-  int i;
+  unsigned int i;
   for(i=0;i<account_list_get_size();i++)
   {
     if( account_list_get_nth( i ) -> state == ( ACCOUNT_STATE_REGISTERED ))
diff --git a/sflphone-gtk/src/dialpad.c b/sflphone-gtk/src/dialpad.c
index 71bee58bd5da51b955c8033834ba95e700fc9a1e..7c757aa1840eeb7f17cb876859ce06af4912f4bf 100644
--- a/sflphone-gtk/src/dialpad.c
+++ b/sflphone-gtk/src/dialpad.c
@@ -24,7 +24,7 @@
  * button pressed event
  */
 static void
-dialpad_pressed (GtkWidget * widget, gpointer data)
+dialpad_pressed (GtkWidget * widget UNUSED, gpointer data)
 {
   sflphone_keypad(0, (gchar*) data);
 }
diff --git a/sflphone-gtk/src/historyfilter.c b/sflphone-gtk/src/historyfilter.c
index aa17647f8c8b6bd59f6aa9d8320c6cc5d28058dc..8d3daecbd6bb3700054e4326e5cb9f4e81da38e4 100644
--- a/sflphone-gtk/src/historyfilter.c
+++ b/sflphone-gtk/src/historyfilter.c
@@ -35,7 +35,7 @@ is_visible(GtkTreeModel* model, GtkTreeIter* iter, gpointer data UNUSED)
 {
   if( SHOW_SEARCHBAR )
   {
-	GValue val = {0, };
+	GValue val = {0,};
 	gchar* text;
 	gchar* search = (gchar*)gtk_entry_get_text(GTK_ENTRY(filter_entry));
 	gtk_tree_model_get_value(GTK_TREE_MODEL(model), iter, 1, &val);