From 26431fc2ecd0b3314f7fadc7b7f42c875e629804 Mon Sep 17 00:00:00 2001 From: David Gauchard Date: Thu, 14 Oct 2021 16:32:41 +0200 Subject: [PATCH] fix rebasing --- legacy/builder/ctags_runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/builder/ctags_runner.go b/legacy/builder/ctags_runner.go index 1176532da23..f6df64bdea3 100644 --- a/legacy/builder/ctags_runner.go +++ b/legacy/builder/ctags_runner.go @@ -56,7 +56,7 @@ func (s *CTagsRunner) Run(ctx *types.Context) error { parser := &ctags.CTagsParser{} - ctx.CTagsOfPreprocessedSource, ctx.Arduifines = parser.Parse(ctx.CTagsOutput, ctx.Sketch.MainFile.Name) + ctx.CTagsOfPreprocessedSource, ctx.Arduifines = parser.Parse(ctx.CTagsOutput, ctx.Sketch.MainFile) parser.FixCLinkageTagsDeclarations(ctx.CTagsOfPreprocessedSource) protos, line := parser.GeneratePrototypes()