summaryrefslogtreecommitdiff
path: root/ui/qt/sctp_chunk_statistics_dialog.cpp
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-17 18:43:34 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-17 18:43:34 +0000
commite9946f0130ee45c24dcf21bda8be4bde082aca1e (patch)
tree1116aac950633601aa822cece43e020ef94d66cf /ui/qt/sctp_chunk_statistics_dialog.cpp
parentf1a440b539ab90b664bc0b9a8d44412231085464 (diff)
downloadwireshark-e9946f0130ee45c24dcf21bda8be4bde082aca1e.tar.gz
Make Ubuntu Buildbot happy
Fix following error: ../../../ui/qt/sctp_chunk_statistics_dialog.cpp: In member function ‘void SCTPChunkStatisticsDialog::fillTable(bool)’: ../../../ui/qt/sctp_chunk_statistics_dialog.cpp:145:29: error: ignoring return value of ‘char* fgets(char*, int, FILE*)’, declared with attribute warn_unused_result [-Werror=unused-result] svn path=/trunk/; revision=54188
Diffstat (limited to 'ui/qt/sctp_chunk_statistics_dialog.cpp')
-rw-r--r--ui/qt/sctp_chunk_statistics_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/sctp_chunk_statistics_dialog.cpp b/ui/qt/sctp_chunk_statistics_dialog.cpp
index c1a9725955..a12c6f7ed4 100644
--- a/ui/qt/sctp_chunk_statistics_dialog.cpp
+++ b/ui/qt/sctp_chunk_statistics_dialog.cpp
@@ -142,7 +142,7 @@ void SCTPChunkStatisticsDialog::fillTable(bool all)
int i = 0, j = 0;
struct chunkTypes temp;
- fgets(line, cap, fp);
+// fgets(line, cap, fp);
while (fgets(line, cap, fp)) {
token = strtok(line, ",");
/* Get rid of the quotation marks */