K 10 svn:author V 3 dim K 8 svn:date V 27 2022-08-21T11:31:20.411175Z K 7 svn:log V 599 Fix unused variable warning in tcp_hpts.c With clang 15, the following -Werror warning is produced: sys/netinet/tcp_hpts.c:1114:10: error: variable 'paced_cnt' set but not used [-Werror,-Wunused-but-set-variable] int32_t paced_cnt = 0; ^ The 'paced_cnt' variable was in tcp_hpts.c when it was first added, but it appears to have been a debugging aid that has never been used, so remove it. MFC after: 3 days (cherry picked from commit b33bfe6e157429ad764e9a883a5e3a194a6d1f9f) Git Hash: 578d8f93983a4a2f9a16683b4d227005b3b92414 Git Author: dim@FreeBSD.org END