diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-02-16 08:29:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-02-16 08:31:46 +0100 |
commit | 3ac780d8a2f8d1b94e9b4776d7f556274d3197dc (patch) | |
tree | ce5e1be0c9de351f229f11536f571254e14d1144 /l10ntools | |
parent | acc9fb5ca0bc378ac03637cba948520a29938940 (diff) |
Missing return statement
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/srclex.l | 1 |
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; } |