diff options
author | Hans Bolinder <[email protected]> | 2014-02-12 16:38:48 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2014-02-12 16:38:48 +0100 |
commit | f43fb209d5f5452df9be505f64a29dbe6ac43b33 (patch) | |
tree | 5d75561200970148449f5adfd269281760d56cc5 /lib/parsetools/src | |
parent | 152f1a4ba2f4e2f0dfbcde2efe5b5fd5edbdb986 (diff) | |
download | otp-f43fb209d5f5452df9be505f64a29dbe6ac43b33.tar.gz otp-f43fb209d5f5452df9be505f64a29dbe6ac43b33.tar.bz2 otp-f43fb209d5f5452df9be505f64a29dbe6ac43b33.zip |
Fix a few of Dialyzer's unmatched_return warnings
Diffstat (limited to 'lib/parsetools/src')
-rw-r--r-- | lib/parsetools/src/yecc.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parsetools/src/yecc.erl b/lib/parsetools/src/yecc.erl index b698beb558..f4657663e6 100644 --- a/lib/parsetools/src/yecc.erl +++ b/lib/parsetools/src/yecc.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2013. All Rights Reserved. +%% Copyright Ericsson AB 1996-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -423,7 +423,7 @@ infile(Parent, Infilex, Options) -> end, case {St#yecc.errors, werror(St)} of {[], false} -> ok; - _ -> _ = file:delete(St#yecc.outfile) + _ -> _ = file:delete(St#yecc.outfile), ok end, Parent ! {self(), yecc_ret(St)}. |