WebKit Bugzilla
Attachment 359151 Details for
Bug 193441
: [JSC] printf-type mishap
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-193441-20190115133847.patch (text/plain), 1.36 KB, created by
Claudio Saavedra
on 2019-01-15 03:38:48 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Claudio Saavedra
Created:
2019-01-15 03:38:48 PST
Size:
1.36 KB
patch
obsolete
>Subversion Revision: 239980 >diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog >index 9777693a22a289760afd25855ff53a30fd209d56..b576e09b020f0f93c64b1cadb6287db5eb878975 100644 >--- a/Source/JavaScriptCore/ChangeLog >+++ b/Source/JavaScriptCore/ChangeLog >@@ -1,3 +1,13 @@ >+2019-01-15 Claudio Saavedra <csaavedra@igalia.com> >+ >+ [JSC] printf-type mishap >+ https://bugs.webkit.org/show_bug.cgi?id=193441 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * jsc.cpp: >+ (jscmain): Fix the printf() format string >+ > 2019-01-15 Caio Lima <ticaiolima@gmail.com> > > DFGByteCodeParser rules for bitwise operations should consider type of their operands >diff --git a/Source/JavaScriptCore/jsc.cpp b/Source/JavaScriptCore/jsc.cpp >index a0d854a73b6936bb3a9fbaaa31df4b52979e54e8..4af8f81acfaea6b48123f6d40ec46166f90a25be 100644 >--- a/Source/JavaScriptCore/jsc.cpp >+++ b/Source/JavaScriptCore/jsc.cpp >@@ -2938,7 +2938,7 @@ int jscmain(int argc, char** argv) > if (options.m_dumpMemoryFootprint) { > MemoryFootprint footprint = MemoryFootprint::now(); > >- printf("Memory Footprint:\n Current Footprint: %llu\n Peak Footprint: %llu\n", footprint.current, footprint.peak); >+ printf("Memory Footprint:\n Current Footprint: %lu\n Peak Footprint: %lu\n", footprint.current, footprint.peak); > } > > return result;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
saam
:
review-
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193441
: 359151