diff options
author | Guy Harris <guy@alum.mit.edu> | 2009-04-21 16:57:52 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2009-04-21 16:57:52 +0000 |
commit | 54c159cb41d3d885807ce117b41cfbb444e45e5a (patch) | |
tree | 26c23c6b5773084609cd0d8ff02dfbd9cf624e1f /gtk/capture_info_dlg.c | |
parent | 85f8b0d87d42dd092ee8baaa0786d9ef8cf49080 (diff) | |
download | wireshark-54c159cb41d3d885807ce117b41cfbb444e45e5a.tar.gz wireshark-54c159cb41d3d885807ce117b41cfbb444e45e5a.tar.bz2 wireshark-54c159cb41d3d885807ce117b41cfbb444e45e5a.zip |
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.
svn path=/trunk/; revision=28108
Diffstat (limited to 'gtk/capture_info_dlg.c')
-rw-r--r-- | gtk/capture_info_dlg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/capture_info_dlg.c b/gtk/capture_info_dlg.c index b91ab1885d..03b9f64be6 100644 --- a/gtk/capture_info_dlg.c +++ b/gtk/capture_info_dlg.c @@ -85,7 +85,7 @@ pct(gint num, gint denom) { if (denom) { return (float) (num * 100.0 / denom); } else { - return 0.0; + return 0.0f; } } |