diff options
author | Hans Bolinder <[email protected]> | 2016-01-20 15:01:18 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-01-20 15:01:18 +0100 |
commit | e5949b5cd2a6d0f691097de189e0f95f34ac404d (patch) | |
tree | 64061454eb67610173178813089e243a13afe009 /lib/tools/src | |
parent | 1b883a0a8163545f107c7f315990417726b54235 (diff) | |
download | otp-e5949b5cd2a6d0f691097de189e0f95f34ac404d.tar.gz otp-e5949b5cd2a6d0f691097de189e0f95f34ac404d.tar.bz2 otp-e5949b5cd2a6d0f691097de189e0f95f34ac404d.zip |
tools: Fix a Dialyzer warning
Diffstat (limited to 'lib/tools/src')
-rw-r--r-- | lib/tools/src/make.erl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/tools/src/make.erl b/lib/tools/src/make.erl index 5d5a1ef2bd..26378f28a0 100644 --- a/lib/tools/src/make.erl +++ b/lib/tools/src/make.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2013. All Rights Reserved. +%% Copyright Ericsson AB 1996-2016. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -299,10 +299,11 @@ check_includes(File, IncludePath, ObjMTime) -> end. check_includes2(Epp, File, ObjMTime) -> + A1 = erl_anno:new(1), case epp:parse_erl_form(Epp) of - {ok, {attribute, 1, file, {File, 1}}} -> + {ok, {attribute, A1, file, {File, A1}}} -> check_includes2(Epp, File, ObjMTime); - {ok, {attribute, 1, file, {IncFile, 1}}} -> + {ok, {attribute, A1, file, {IncFile, A1}}} -> case file:read_file_info(IncFile) of {ok, #file_info{mtime=MTime}} when MTime>ObjMTime -> epp:close(Epp), |