summaryrefslogtreecommitdiff
path: root/ui/gtk/rtp_stream_dlg.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2015-01-14 21:04:32 -0500
committerJeff Morriss <jeff.morriss.ws@gmail.com>2015-01-15 02:05:43 +0000
commit6f630c10a59c112f52f52694bc310d7399e387bb (patch)
treeff9f56ec9416ca9645452978921273495556bbcf /ui/gtk/rtp_stream_dlg.c
parentb63a942c4b1466d1638b991653c9b3e1e8a0daad (diff)
downloadwireshark-6f630c10a59c112f52f52694bc310d7399e387bb.tar.gz
Fix the compile: Use the new (double) variable.
Change-Id: I38a9b0f55e9f19fe7f4f09f5eec2817dd822c6d0 Reviewed-on: https://code.wireshark.org/review/6542 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
Diffstat (limited to 'ui/gtk/rtp_stream_dlg.c')
-rw-r--r--ui/gtk/rtp_stream_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/rtp_stream_dlg.c b/ui/gtk/rtp_stream_dlg.c
index 160268b3ac..e6bfad37e4 100644
--- a/ui/gtk/rtp_stream_dlg.c
+++ b/ui/gtk/rtp_stream_dlg.c
@@ -485,7 +485,7 @@ rtpstream_on_copy_as_csv(GtkWindow *win _U_, gpointer data _U_)
g_string_append_printf(CSV_str, "\"%u\"", table_entry_uint);
} else if (gtk_tree_model_get_column_type(GTK_TREE_MODEL(list_store), j) == G_TYPE_DOUBLE) {
gtk_tree_model_get(GTK_TREE_MODEL(list_store), &iter, j, &table_entry_double, -1);
- g_string_append_printf(CSV_str, "\"%f\"", table_entry_uint);
+ g_string_append_printf(CSV_str, "\"%f\"", table_entry_double);
} else if (gtk_tree_model_get_column_type(GTK_TREE_MODEL(list_store), j) == G_TYPE_STRING) {
gtk_tree_model_get(GTK_TREE_MODEL(list_store), &iter, j, &table_entry, -1);
g_string_append_printf(CSV_str, "\"%s\"", table_entry);