<p>In <a href="https://github.com/geany/geany/pull/957#discussion_r61960771">tagmanager/src/tm_source_file.c</a>:</p>
<pre style='color:#555'>> +    if ((attrs & tm_tag_attr_access_t) && (TAG_ACCESS_UNKNOWN != tag->access))
> +          fprintf(fp, "%c%c", TA_ACCESS, tag->access);
> +  if ((attrs & tm_tag_attr_impl_t) && (TAG_IMPL_UNKNOWN != tag->impl))
> +          fprintf(fp, "%c%c", TA_IMPL, tag->impl);
> +
> +  if (fprintf(fp, "\n"))
> +          return TRUE;
> +  else
> +          return FALSE;
> +}
> +
> +GPtrArray *tm_source_file_read_tags_file(const gchar *tags_file, TMParserType mode)
> +{
> +  guchar buf[BUFSIZ];
> +  FILE *fp;
> +  GPtrArray *file_tags, *new_tags;
</pre>
<pre lang="gcc"><code>../../../tagmanager/src/tm_source_file.c: In function 'tm_source_file_read_tags_file':
../../../tagmanager/src/tm_source_file.c:527:25: warning: unused variable 'new_tags' [-Wunused-variable]
  GPtrArray *file_tags, *new_tags;
                         ^
</code></pre>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly or <a href="https://github.com/geany/geany/pull/957/files/5d9376ea801a6e6c3ec22748741362a3a2eff7ac#r61960771">view it on GitHub</a><img alt="" height="1" src="https://github.com/notifications/beacon/ABDrJ5HnCFUqjFQCGWKZwtDcvIlSAv5qks5p98AwgaJpZM4Ht-Ad.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/geany/geany/pull/957/files/5d9376ea801a6e6c3ec22748741362a3a2eff7ac#r61960771"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>