summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@pefoley.com>2016-01-15 22:34:38 -0500
committerjan iversen <jani@documentfoundation.org>2016-01-16 10:54:46 +0000
commita7bdc9daa802ea67e41e0f93bdd8f0e64b00f8d9 (patch)
tree18f7d4a6afd5c6ad8be54fdf3960884a110b3227 /l10ntools
parent659526a33619a74730843a06158b22592ae06a0b (diff)
Fix set but unused variable warning
Change-Id: I23fb9abf2b9462c939d4d9caf699e48ffded3bb4 Reviewed-on: https://gerrit.libreoffice.org/21505 Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/srclex.l2
1 files changed, 0 insertions, 2 deletions
diff --git a/l10ntools/source/srclex.l b/l10ntools/source/srclex.l
index 1cdef41c6b3c..9caf0441c37b 100644
--- a/l10ntools/source/srclex.l
+++ b/l10ntools/source/srclex.l
@@ -234,10 +234,8 @@ void yyerror( const char *s )
}
SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
- int e;
yyin = init(argc, argv);
yylex();
- e = GetError();
Close();
return EXIT_SUCCESS;
}