From b88934db252a8b41c3a537f0bee21323377c8ad9 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 20 Mar 2004 08:32:03 +0000 Subject: [PATCH] Make "timestamp_type" static, as all access to it should be through the routines in this file. svn path=/trunk/; revision=10419 --- epan/timestamp.c | 4 ++-- 1 file 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 @@ -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) {