public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
From: Gisle Vanem <gvanem@online.no>
To: location@lists.ipfire.org
Subject: Warning in '__loc_network_tree_count()'
Date: Sat, 04 Mar 2023 11:44:33 +0100	[thread overview]
Message-ID: <5474f77e-e2a8-16d9-6c27-28c976dbebbd@online.no> (raw)

[-- Attachment #1: Type: text/plain, Size: 607 bytes --]

Hello list.

Compiling with 'clang-cl' on Windows-10, I saw this
important warning:
network.c(796,10): warning: variable 'counter' set but not used [-Wunused-but-set-variable]
    size_t* counter = (size_t*)data;
            ^

So shouldn't the function be:

static int __loc_network_tree_count(struct loc_network* network, void* data) {
	size_t* counter = (size_t*)data;

	// Increase the counter for each network
	(*counter)++;
	return 0;
}

But I fail to see this ret-val is used for anything.

BTW, disasm now is correct:
  inc qword ptr [rdx]
  xor eax,eax
  ret


-- 
--gv

             reply	other threads:[~2023-03-04 10:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-04 10:44 Gisle Vanem [this message]
2023-03-04 10:51 ` Michael Tremer
2023-03-04 11:00   ` Gisle Vanem
2023-03-04 11:03     ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5474f77e-e2a8-16d9-6c27-28c976dbebbd@online.no \
    --to=gvanem@online.no \
    --cc=location@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox