diff options
author | Balint Reczey <balint.reczey@ericsson.com> | 2008-10-10 16:29:09 +0000 |
---|---|---|
committer | Balint Reczey <balint.reczey@ericsson.com> | 2008-10-10 16:29:09 +0000 |
commit | 172d8448e8dc96ec5a1d9abfec99a697b473f7ca (patch) | |
tree | 8248cdc91717b53f012d39b4bd8156f888f95aeb /gtk/io_stat.c | |
parent | feed6d124ffc8de0a0ec25de7b95478b547cb7bd (diff) | |
download | wireshark-172d8448e8dc96ec5a1d9abfec99a697b473f7ca.tar.gz wireshark-172d8448e8dc96ec5a1d9abfec99a697b473f7ca.tar.bz2 wireshark-172d8448e8dc96ec5a1d9abfec99a697b473f7ca.zip |
temporary fix for return type warning
svn path=/trunk/; revision=26404
Diffstat (limited to 'gtk/io_stat.c')
-rw-r--r-- | gtk/io_stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/io_stat.c b/gtk/io_stat.c index 67c37b2401..5666370c05 100644 --- a/gtk/io_stat.c +++ b/gtk/io_stat.c @@ -629,7 +629,7 @@ get_it_value(io_stat_t *io, int graph_id, int idx) default: break; } - return value; + return (guint32)value; /* FIXME: loss of precision, visible on the graph for small values */ } |