script: remove unused variable

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2019-04-18 13:21:05 +02:00
parent c1c2ee0b3a
commit 88025c74e3
1 changed files with 1 additions and 2 deletions

View File

@ -110,13 +110,12 @@ struct script_log {
FILE *fp; /* file pointer (handler) */
int format; /* SCRIPT_FMT_* */
char *filename; /* on command line specified name */
struct timeval oldtime; /* previous entry log time */
struct timeval oldtime; /* previous entry log time (SCRIPT_FMT_TIMING_* only) */
unsigned int initialized : 1;
};
struct script_stream {
struct timeval oldtime; /* last update */
struct script_log **logs; /* logs where to write data from stream */
size_t nlogs; /* number of logs */
char ident; /* stream identifier */