diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-04 02:04:59 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-04 02:04:59 +0000 |
commit | c5eda9e1d45dad06bb41f175bd082132e0818c47 (patch) | |
tree | 06b5b77c4168f7e678acb07a0f9c6f294b1436e2 /ppapi | |
parent | d897b14a29b5cb764c82156b79be0f00565f3143 (diff) | |
download | chromium_src-c5eda9e1d45dad06bb41f175bd082132e0818c47.zip chromium_src-c5eda9e1d45dad06bb41f175bd082132e0818c47.tar.gz chromium_src-c5eda9e1d45dad06bb41f175bd082132e0818c47.tar.bz2 |
Coverity: Fix a few pass-by-values.
CID_COUNT=2
CID=103366,103367
TEST=none
BUG=none
R=groby
Review URL: https://chromiumcodereview.appspot.com/9429066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124883 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/native_client/src/trusted/plugin/service_runtime.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc index e8817318..1af82b1 100644 --- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc @@ -472,9 +472,8 @@ void PluginReverseInterface::QuotaRequest_MainThreadResponse( // request automatically deleted } -int64_t PluginReverseInterface::RequestQuotaForWrite(nacl::string file_id, - int64_t offset, - int64_t bytes_to_write) { +int64_t PluginReverseInterface::RequestQuotaForWrite( + nacl::string file_id, int64_t offset, int64_t bytes_to_write) { NaClLog(4, "PluginReverseInterface::RequestQuotaForWrite:" " (file_id='%s', offset=%"NACL_PRId64", bytes_to_write=%" |