public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* Warning in '__loc_network_tree_count()'
@ 2023-03-04 10:44 Gisle Vanem
  2023-03-04 10:51 ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Gisle Vanem @ 2023-03-04 10:44 UTC (permalink / raw)
  To: location

[-- 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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-04 11:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-04 10:44 Warning in '__loc_network_tree_count()' Gisle Vanem
2023-03-04 10:51 ` Michael Tremer
2023-03-04 11:00   ` Gisle Vanem
2023-03-04 11:03     ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox