From: Evgeny Vereshchagin Date: Fri, 26 Oct 2018 10:25:36 +0000 (+0000) Subject: lgtm: drop redundant newlines X-Git-Tag: v240~461 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=845702c63863add5606a7a7f00a959ffdcf89635;p=thirdparty%2Fsystemd.git lgtm: drop redundant newlines --- diff --git a/.lgtm/cpp-queries/fgets.ql b/.lgtm/cpp-queries/fgets.ql index 82de8c44828..a4181e4f3db 100644 --- a/.lgtm/cpp-queries/fgets.ql +++ b/.lgtm/cpp-queries/fgets.ql @@ -10,13 +10,11 @@ */ import cpp - predicate dangerousFunction(Function function) { exists (string name | name = function.getQualifiedName() | name = "fgets") } - from FunctionCall call, Function target where call.getTarget() = target and dangerousFunction(target)