diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-01-20 22:44:44 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-01-20 22:44:44 +0000 |
commit | 8cfc9d6f898b3ce2e0cd2aa2dd70769a530910a5 (patch) | |
tree | 76eee8440f4bad9b45eb4bc07a64f143325f214d /gdb/rdi-share | |
parent | 7ada5ce24f37e5704695d81b8708892bbd755dec (diff) | |
download | gdb-8cfc9d6f898b3ce2e0cd2aa2dd70769a530910a5.tar.gz |
* rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
(closeLogFile): Ditto.
Diffstat (limited to 'gdb/rdi-share')
-rw-r--r-- | gdb/rdi-share/devsw.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/rdi-share/devsw.c b/gdb/rdi-share/devsw.c index 59cbb115ff5..d5318d05b56 100644 --- a/gdb/rdi-share/devsw.c +++ b/gdb/rdi-share/devsw.c @@ -37,7 +37,6 @@ static int angelDebugLogEnable = 0; static void openLogFile () { time_t t; - struct tm lt; if (angelDebugFilename == NULL || *angelDebugFilename =='\0') return; @@ -67,7 +66,6 @@ static void openLogFile () static void closeLogFile (void) { time_t t; - struct tm lt; if (!angelDebugLogFile) return; |