tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 27bd5d98b87c2b983b4c8be5b0cb2abbf0ad30ea
parent e42aa71ef8874c18a0fc5c2691dc8c2fba10650c
Author: Emilio Cobos Álvarez <emilio@crisal.io>
Date:   Wed, 12 Nov 2025 11:43:08 +0900

Bug 1998125 - Remove unused printf argument.

Diffstat:
Mview/nsView.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/view/nsView.cpp b/view/nsView.cpp @@ -353,7 +353,7 @@ void nsView::List(FILE* out, int32_t aIndent) const { nsRect brect = GetBounds(); fprintf(out, "{%d,%d,%d,%d}", brect.X(), brect.Y(), brect.Width(), brect.Height()); - fprintf(out, " vis=%d frame=%p <\n", mFrame); + fprintf(out, " frame=%p <\n", mFrame); for (i = aIndent; --i >= 0;) fputs(" ", out); fputs(">\n", out); }