summaryrefslogtreecommitdiffstats
path: root/l10ntools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-02-16 08:29:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-02-16 08:31:46 +0100
commit3ac780d8a2f8d1b94e9b4776d7f556274d3197dc (patch)
treece5e1be0c9de351f229f11536f571254e14d1144 /l10ntools
parentPrevent misuses of RTL_CONSTASCII_USTRINGPARAM (diff)
downloadcore-3ac780d8a2f8d1b94e9b4776d7f556274d3197dc.tar.gz
core-3ac780d8a2f8d1b94e9b4776d7f556274d3197dc.zip
Missing return statement
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/srclex.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/l10ntools/source/srclex.l b/l10ntools/source/srclex.l
index 40ae022e1b26..814e236e98a4 100644
--- a/l10ntools/source/srclex.l
+++ b/l10ntools/source/srclex.l
@@ -238,4 +238,5 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
yylex();
e = GetError();
Close();
+ return EXIT_SUCCESS;
}