aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sip_stat.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-21 16:57:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-21 16:57:52 +0000
commit64016f50fe6793ca0a74d52b3f4d13a7ba2d88b1 (patch)
tree26c23c6b5773084609cd0d8ff02dfbd9cf624e1f /gtk/sip_stat.c
parentb2e0ce09884ec03f9af1f4d52e34c81813168b79 (diff)
Turn on -Wshorten-64-to-32 by default, and fix some issues that turned
up (99 44/100% of which were assignments of double-precision floating-point constants to floats). Hopefully this will catch at least some P64 issues on UN*X. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28108 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/sip_stat.c')
-rw-r--r--gtk/sip_stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/sip_stat.c b/gtk/sip_stat.c
index a92ddf0f68..4fb7b4da51 100644
--- a/gtk/sip_stat.c
+++ b/gtk/sip_stat.c
@@ -220,7 +220,7 @@ sip_draw_hash_requests(gchar *key _U_ , sip_request_method_t *data, gchar * unus
{
/* Create new label */
data->widget=gtk_label_new(string_buff);
- gtk_misc_set_alignment(GTK_MISC(data->widget), 0.0, 0.5);
+ gtk_misc_set_alignment(GTK_MISC(data->widget), 0.0f, 0.5f);
gtk_box_pack_start(GTK_BOX(data->sp->request_box), data->widget,FALSE,FALSE, 0);
gtk_widget_show(data->widget);
}