Skip to content

Commit 57caa5a

Browse files
committed
Compile error due to invalid printf format of int64 value.
1 parent 0dce933 commit 57caa5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cefpython/cef3/subprocess/cefpython_app.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ void CefPythonApp::DoJavascriptBindingsForBrowser(
395395
// be executed anymore.
396396
DebugLog("Renderer: DoJavascriptBindingsForBrowser() WARNING: " \
397397
"frameId <= 0");
398-
printf("cefpython: Renderer: frameId = %li\n", *it);
398+
printf("cefpython: Renderer: frameId = %lli\n", *it);
399399
continue;
400400
}
401401
CefRefPtr<CefFrame> frame = browser->GetFrame(*it);

0 commit comments

Comments
 (0)