aboutsummaryrefslogtreecommitdiffstats
path: root/epan/timestamp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-20 08:32:03 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-20 08:32:03 +0000
commit48f1f05cb1bfa865e9e3a30d9452d799ddb5787b (patch)
treea546adea6c6c345c1e7ab573b059e76a8f5cc80c /epan/timestamp.c
parent1e5546be9635be87047e0c8dced37dfbb0d03341 (diff)
Make "timestamp_type" static, as all access to it should be through the
routines in this file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10419 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/timestamp.c')
-rwxr-xr-xepan/timestamp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/timestamp.c b/epan/timestamp.c
index 45ef5650c7..8be46ef9c0 100755
--- a/epan/timestamp.c
+++ b/epan/timestamp.c
@@ -1,7 +1,7 @@
/* timestamp.c
* Routines for timestamp type setting.
*
- * $Id: timestamp.c,v 1.1 2004/03/18 21:14:37 obiot Exp $
+ * $Id: timestamp.c,v 1.2 2004/03/20 08:32:03 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -30,7 +30,7 @@
/* Init with an invalid value, so that "recent" in gtk/menu.c can detect this
* and distinguish it from a command line value */
-ts_type timestamp_type = TS_NOT_SET;
+static ts_type timestamp_type = TS_NOT_SET;
ts_type get_timestamp_setting(void)
{