| Index: src/tcs/rpc/tcstp/rpc_context.c
|
| diff --git a/src/tcs/rpc/tcstp/rpc_context.c b/src/tcs/rpc/tcstp/rpc_context.c
|
| index 189edb16cacc9e039f3a5de93cf621175ba9cf39..b04449e8909c7fec92d5f453617f6e7f87e38844 100644
|
| --- a/src/tcs/rpc/tcstp/rpc_context.c
|
| +++ b/src/tcs/rpc/tcstp/rpc_context.c
|
| @@ -34,7 +34,7 @@ tcs_wrap_OpenContext(struct tcsd_thread_data *data)
|
| TSS_RESULT result;
|
| UINT32 tpm_version = tpm_metrics.version.minor;
|
|
|
| - LogDebugFn("thread %zd", THREAD_ID);
|
| + LogDebugFn("thread %ld", THREAD_ID);
|
|
|
| result = TCS_OpenContext_Internal(&hContext);
|
| if (result == TSS_SUCCESS) {
|
| @@ -66,7 +66,7 @@ tcs_wrap_CloseContext(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);
|
|
|
| result = TCS_CloseContext_Internal(hContext);
|
|
|
|
|