Fix indent (use 4 spaces) and remove trailing whitespace
authoralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 20 Jan 2014 09:42:45 +0000 (09:42 +0000)
committeralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 20 Jan 2014 09:42:45 +0000 (09:42 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@54854 f5534014-38df-0310-8fa8-9805f1628bb7

ui/gtk/export_pdu_dlg.c

index 387f5dc8b8638e84a3a53cc5a94197da3814cdcf..07859a86064b0f37fc8f55b4b83512144f8f4259 100644 (file)
@@ -76,9 +76,9 @@ export_pdu_action(gpointer data)
     filter = gtk_entry_get_text(GTK_ENTRY(exp_pdu_dlg_data->filter_widget));
     tap_name = gtk_combo_box_text_get_active_text(GTK_COMBO_BOX_TEXT(exp_pdu_dlg_data->tap_name_widget));
 
-       do_export_pdu(filter, tap_name, &(exp_pdu_dlg_data->exp_pdu_tap_data));
+    do_export_pdu(filter, tap_name, &(exp_pdu_dlg_data->exp_pdu_tap_data));
     window_destroy(export_pdu_dlg);
-       g_free(exp_pdu_dlg_data);
+    g_free(exp_pdu_dlg_data);
 }
 
 
@@ -106,7 +106,7 @@ export_pdu_show_cb(GtkWidget *w _U_, gpointer d _U_)
     }
 
     exp_pdu_dlg_data = (exp_pdu_dlg_t *)g_malloc(sizeof(exp_pdu_dlg_t));
-    exp_pdu_dlg_data->exp_pdu_tap_data.pkt_encap = wtap_wtap_encap_to_pcap_encap(WTAP_ENCAP_WIRESHARK_UPPER_PDU); 
+    exp_pdu_dlg_data->exp_pdu_tap_data.pkt_encap = wtap_wtap_encap_to_pcap_encap(WTAP_ENCAP_WIRESHARK_UPPER_PDU);
 
     export_pdu_dlg = window_new(GTK_WINDOW_TOPLEVEL, "Wireshark: Export PDU:s to pcap-ng file");