From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [125.163.245.210]) by gnuweeb.org (Postfix) with ESMTPSA id 2D4E97E414; Thu, 26 May 2022 11:41:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1653565303; bh=cPMeYBOQIPjIPEWQAQ7as8rQYe3uas6SwHIIS7tveOg=; h=From:To:Cc:Subject:Date:From; b=jO/aqtHRRuawKyxolTOGHIHe5+rTn0KVtNHFAbMy3O0t4TaZJBdOTssjZvf/Q3fcw kX0HhNF4cP75chS2P90RgFL6SH7Ge5AoYuE7Y4hNd0R1L2L8I6YSbXCzUED++CHQWp jWTOPFnfaWhCRq725+KjLdMwpQYvFBU4LaDjmuvQSop8I7BTuYvNaCIqTsFh9Zn4by ShmX8rMFzu01SMSnMHSsP5iO4JpVGmjBURu2PPkx2X2rOpSY9iqOGF1/KFByoy7bA5 zNwlYFPnuBtpqnxEF2rgpBRb+BROrjTr7xJu51mzwWnna2DI9ZZ77FgGf30SQTaFoy vSqPFSjfMHyMg== From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Nick Mathewson Subject: [GIT PULL tor v1 0/6] Build fixes for clang-15 Date: Thu, 26 May 2022 18:41:24 +0700 Message-Id: <20220526114130.285353-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Hi, This series fixes build issue when compiling with clang-15. There are 6 patches in this series: - Patch 1 to 5 are fixes of unused variable warnings. - Patch 6 is a fix for pragma that only exists in GCC but used in clang. It's available in the git repository below... Please pull, thank you! --- The following changes since commit 69e3b8bb843aaab65ec3a740348f5481bac13513: Merge branch 'tor-gitlab/mr/567' (2022-05-24 15:24:48 -0400) are available in the Git repository at: https://gitlab.torproject.org/ammarfaizi2/tor.git tags/clang-fixes for you to fetch changes up to dee215fe16e37ec0a369519facdc4648074a35b1: test/test_hs_descriptor: Don't invoke GCC warning when compiling with clang (2022-05-26 18:28:01 +0700) Signed-off-by: Ammar Faizi --- Ammar Faizi (6): channel: Fix clang-15 complaint (unused variable) connection_or: Fix clang-15 complaint (unused variable) routerlist: Fix clang-15 complaint (unused variable) compat_libevent: Fix clang-15 complaint (unused variable) test/bench: Fix clang-15 complaint (unused variable) test/test_hs_descriptor: Don't invoke GCC warning when compiling with clang src/core/or/channel.c | 4 +--- src/core/or/connection_or.c | 4 ++++ src/feature/nodelist/routerlist.c | 2 -- src/lib/evloop/compat_libevent.c | 2 -- src/test/bench.c | 1 + src/test/test_hs_descriptor.c | 3 +++ 6 files changed, 9 insertions(+), 7 deletions(-) base-commit: 69e3b8bb843aaab65ec3a740348f5481bac13513 -- Ammar Faizi