tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 54772340bb7dee9beecb578a82240e6e034bd167
parent 7b64012ae52052db627e147dc6cddada31e00e52
Author: David Goulet <dgoulet@torproject.org>
Date:   Tue,  1 Jul 2025 08:19:36 -0400

geoip: Fix Rust clippy warning

Signed-off-by: David Goulet <dgoulet@torproject.org>

Diffstat:
Mscripts/maint/geoip/geoip-db-tool/src/main.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/maint/geoip/geoip-db-tool/src/main.rs b/scripts/maint/geoip/geoip-db-tool/src/main.rs @@ -176,7 +176,7 @@ fn convert(args: Args) -> std::io::Result<()> { for nb in blocks { n += 1; if n % 100000 == 0 { - println!("{}/{}", n, num_blocks); + println!("{n}/{num_blocks}"); } let start = nb.net.network(); let end = nb.net.broadcast();