Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: src/tcs/rpc/tcstp/rpc_selftest.c

Issue 3581012: Upgrade from trousers 0.3.3 to 0.3.6 and from testsuite 0.2 to 0.3. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/trousers.git
Patch Set: git cl push Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/tcs/rpc/tcstp/rpc_seal.c ('k') | src/tcs/rpc/tcstp/rpc_sign.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/tcs/rpc/tcstp/rpc_selftest.c
diff --git a/src/tcs/rpc/tcstp/rpc_selftest.c b/src/tcs/rpc/tcstp/rpc_selftest.c
index 1f74415316d03d4cb35b459f0fdd2e8f0c9932a7..4cad0c952f6e5f975c918ba2f1a6e63e099ee095 100644
--- a/src/tcs/rpc/tcstp/rpc_selftest.c
+++ b/src/tcs/rpc/tcstp/rpc_selftest.c
@@ -36,7 +36,7 @@ tcs_wrap_SelfTestFull(struct tcsd_thread_data *data)
if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
return TCSERR(TSS_E_INTERNAL_ERROR);
- LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
+ LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
MUTEX_LOCK(tcsp_lock);
@@ -66,7 +66,7 @@ tcs_wrap_CertifySelfTest(struct tcsd_thread_data *data)
if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
return TCSERR(TSS_E_INTERNAL_ERROR);
- LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
+ LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
if (getData(TCSD_PACKET_TYPE_UINT32, 1, &hKey, 0, &data->comm))
return TCSERR(TSS_E_INTERNAL_ERROR);
@@ -126,7 +126,7 @@ tcs_wrap_GetTestResult(struct tcsd_thread_data *data)
if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
return TCSERR(TSS_E_INTERNAL_ERROR);
- LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
+ LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
MUTEX_LOCK(tcsp_lock);
« no previous file with comments | « src/tcs/rpc/tcstp/rpc_seal.c ('k') | src/tcs/rpc/tcstp/rpc_sign.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698