aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtps2.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-03-29 22:16:26 +0000
committerBill Meier <wmeier@newsguy.com>2009-03-29 22:16:26 +0000
commit808a4e2c3c5d80d6451ed8cce85e302d96225437 (patch)
treeadb75ac439ef8b2b6bdc2fe40bbbaa97d1b8d2eb /epan/dissectors/packet-rtps2.c
parentf77b5f8d775c532ba1cb7ba75738ee392873345f (diff)
Define certain fcns as static (if not used externally).
Also: whiule we're at it: - fix hf[] blurbs as appropriate to use NULL; - fix some indentation svn path=/trunk/; revision=27890
Diffstat (limited to 'epan/dissectors/packet-rtps2.c')
-rw-r--r--epan/dissectors/packet-rtps2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rtps2.c b/epan/dissectors/packet-rtps2.c
index 5e2eec8155..d5986df16c 100644
--- a/epan/dissectors/packet-rtps2.c
+++ b/epan/dissectors/packet-rtps2.c
@@ -833,7 +833,7 @@ static guint rtps_max_batch_samples_dissected = 16;
/* *********************************************************************** */
/* Appends a submessage description to the info summary text
*/
-void info_summary_append(char *summaryText, int submessageId, const char * extra_text) {
+static void info_summary_append(char *summaryText, int submessageId, const char * extra_text) {
gint len = strlen(summaryText);
if (extra_text == NULL) {
extra_text="";
@@ -853,7 +853,7 @@ void info_summary_append(char *summaryText, int submessageId, const char * extra
/* Appends a submessage description to the info summary text, with
* extra formatting for those submessages that has a status info
*/
-void info_summary_append_ex(char *info_summary_text,
+static void info_summary_append_ex(char *info_summary_text,
int submessageId,
guint32 writer_id,
guint32 status_info) {