aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sctp_byte_graph_dlg.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-10 12:49:05 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-10 12:49:05 +0000
commit91f4b6d9dfbb90895a9e6c80e39091b97c6cea4d (patch)
tree7f2c34e3f7abcc0aa99732c82638a76e9d61b426 /gtk/sctp_byte_graph_dlg.c
parent86bb198bcbc192d2ef8c626c0b0688b133963e8e (diff)
Warning fix: ISO C forbids zero-size array ‘tsns
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13692 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/sctp_byte_graph_dlg.c')
-rw-r--r--gtk/sctp_byte_graph_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/sctp_byte_graph_dlg.c b/gtk/sctp_byte_graph_dlg.c
index 2f6a6f04e1..acdef4e104 100644
--- a/gtk/sctp_byte_graph_dlg.c
+++ b/gtk/sctp_byte_graph_dlg.c
@@ -99,7 +99,7 @@ struct sack_chunk_header {
guint32 a_rwnd;
guint16 nr_of_gaps;
guint16 nr_of_dups;
- guint8 tsns[0];
+ guint8 *tsns;
};
struct gaps {