diff options
author | Nico Weber <thakis@chromium.org> | 2014-09-04 21:43:03 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2014-09-05 04:47:02 +0000 |
commit | 54d38dc5ade53006ab29f635cdacfb56620b9f69 (patch) | |
tree | 5718e0a610b831d2a803d8a55d401ec1111cca66 /chrome/installer/gcapi | |
parent | 22796d8d5fd362111b7aa431d229aa2ffc91aedd (diff) | |
download | chromium_src-54d38dc5ade53006ab29f635cdacfb56620b9f69.zip chromium_src-54d38dc5ade53006ab29f635cdacfb56620b9f69.tar.gz chromium_src-54d38dc5ade53006ab29f635cdacfb56620b9f69.tar.bz2 |
Fix problems in r293393.
TBR=scottmg@chromium.org
Review URL: https://codereview.chromium.org/542973002
Cr-Commit-Position: refs/heads/master@{#293440}
Diffstat (limited to 'chrome/installer/gcapi')
-rw-r--r-- | chrome/installer/gcapi/gcapi_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/gcapi/gcapi_test.cc b/chrome/installer/gcapi/gcapi_test.cc index 4e90d41..4e5d0a7 100644 --- a/chrome/installer/gcapi/gcapi_test.cc +++ b/chrome/installer/gcapi/gcapi_test.cc @@ -25,7 +25,7 @@ void call_statically() { if (result_flag_off != result_flag_on) printf("Registry key flag is not being set properly."); - printf("Static call returned result as %ld and reason as %ld.\n", + printf("Static call returned result as %d and reason as %ld.\n", result_flag_on, reason); } @@ -50,7 +50,7 @@ void call_dynamically() { if (result_flag_off != result_flag_on) printf("Registry key flag is not being set properly."); - printf("Dynamic call returned result as %d and reason as %d.\n", + printf("Dynamic call returned result as %d and reason as %ld.\n", result_flag_on, reason); } else { printf("Couldn't find GoogleChromeCompatibilityCheck() in gcapi_dll.\n"); |