From d4ab584f0fd1a82cbd0f5aba36be863fc219868d Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 19 Jan 2004 23:03:20 +0000 Subject: Move "ts_type_text" out of "epan/timestamp.h into "gtk/recent.c", as it's only used in the latter; that avoids lots of warnings about "ts_type_text" being defined but not used in other source files that include "epan/timestamp.h". (If it's going to be used in more than one file, make it non-static and declare it "extern" in "epan/timestamp.h".) Define TS_NOT_SET as ((ts_type)-1), and use that when initializing "timestamp_type" in Ethereal and when checking to see whether "timestamp_type" was set, to avoid signed vs. unsigned comparison warnings. Clean up indentation. svn path=/trunk/; revision=9740 --- epan/timestamp.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'epan/timestamp.h') diff --git a/epan/timestamp.h b/epan/timestamp.h index 291b71feb2..38f28ac507 100644 --- a/epan/timestamp.h +++ b/epan/timestamp.h @@ -1,13 +1,12 @@ /* timestamp.h * Defines for packet timestamps * - * $Id: timestamp.h,v 1.3 2004/01/19 03:46:42 ulfl Exp $ + * $Id: timestamp.h,v 1.4 2004/01/19 23:03:19 guy Exp $ * * Ethereal - Network traffic analyzer - * By Gerald Combs + * By Gerald Combs * Copyright 1998 Gerald Combs * - * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 @@ -26,7 +25,6 @@ #ifndef __TIMESTAMP_H__ #define __TIMESTAMP_H__ - /* * Type of time-stamp shown in the summary display. */ @@ -37,10 +35,12 @@ typedef enum { TS_DELTA } ts_type; -extern ts_type timestamp_type; - -static char *ts_type_text[] = - { "RELATIVE", "ABSOLUTE", "ABSOLUTE_WITH_DATE", "DELTA", NULL }; +/* + * Special value used for the command-line setting in Ethereal, to indicate + * that no value has been set from the command line. + */ +#define TS_NOT_SET ((ts_type)-1) +extern ts_type timestamp_type; #endif /* timestamp.h */ -- cgit v1.2.3