aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-02-09 19:32:28 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-02-09 19:32:28 +0000
commitf0fdcecac630017124a5a2c44c641c86145a2e25 (patch)
tree75bb7fc1d5214c6895c582c8943b0ebe6c7ee50a /plugins
parentf9a8a11ef521d6d9ae6160a8d75085264f07d8e2 (diff)
Initialize *p_pi solely to get rid of compiler warning.
svn path=/trunk/; revision=1613
Diffstat (limited to 'plugins')
-rw-r--r--plugins/plugin_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/plugin_api.c b/plugins/plugin_api.c
index 6c3a672eb3..0706160a0a 100644
--- a/plugins/plugin_api.c
+++ b/plugins/plugin_api.c
@@ -1,7 +1,7 @@
/* plugin_api.c
* Routines for Ethereal plugins.
*
- * $Id: plugin_api.c,v 1.2 2000/02/07 17:23:47 gram Exp $
+ * $Id: plugin_api.c,v 1.3 2000/02/09 19:32:28 gram Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@xiexie.org>
@@ -32,7 +32,7 @@
#include "plugin_api.h"
static plugin_address_table_t *patable = NULL;
-packet_info *p_pi;
+packet_info *p_pi = NULL;
#ifdef pi