diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-08-19 08:43:58 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-08-19 08:43:58 +0000 |
commit | eebed02d9dbebe4faf682e7b31c1af36f1202311 (patch) | |
tree | 8da732ee031f667ecf8c126a5e023e52891c92dd /gtk/gsm_a_stat.c | |
parent | b7b0df514cd82e2da64b9e1ab4d2abf172eeb257 (diff) | |
download | wireshark-eebed02d9dbebe4faf682e7b31c1af36f1202311.tar.gz wireshark-eebed02d9dbebe4faf682e7b31c1af36f1202311.tar.bz2 wireshark-eebed02d9dbebe4faf682e7b31c1af36f1202311.zip |
From Michael Lum:
Statistics data structure was not being passed to the draw routine.
svn path=/trunk/; revision=15425
Diffstat (limited to 'gtk/gsm_a_stat.c')
-rw-r--r-- | gtk/gsm_a_stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gsm_a_stat.c b/gtk/gsm_a_stat.c index 9a13081092..9e558a35fa 100644 --- a/gtk/gsm_a_stat.c +++ b/gtk/gsm_a_stat.c @@ -495,7 +495,7 @@ gsm_a_stat_gtk_bssmap_cb( i++; } - gsm_a_stat_draw(NULL); + gsm_a_stat_draw(&stat); } @@ -538,7 +538,7 @@ gsm_a_stat_gtk_dtap_cb( i++; } - gsm_a_stat_draw(NULL); + gsm_a_stat_draw(&stat); } static void |