Index: src/tcs/rpc/tcstp/rpc_key.c |
diff --git a/src/tcs/rpc/tcstp/rpc_key.c b/src/tcs/rpc/tcstp/rpc_key.c |
index a71a790fae493b7d4a1d89e49a900a2eb0e1a8fe..d3a515325484507dc1b91d9ed228d15af16b4ad2 100644 |
--- a/src/tcs/rpc/tcstp/rpc_key.c |
+++ b/src/tcs/rpc/tcstp/rpc_key.c |
@@ -37,7 +37,7 @@ tcs_wrap_EvictKey(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); |
@@ -69,7 +69,7 @@ tcs_wrap_GetPubkey(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); |
@@ -122,7 +122,7 @@ tcs_wrap_TerminateHandle(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, &authHandle, 0, &data->comm)) |
return TCSERR(TSS_E_INTERNAL_ERROR); |
@@ -159,7 +159,7 @@ tcs_wrap_LoadKeyByBlob(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, &hUnwrappingKey, 0, &data->comm)) |
return TCSERR(TSS_E_INTERNAL_ERROR); |
@@ -235,7 +235,7 @@ tcs_wrap_LoadKey2ByBlob(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, &hUnwrappingKey, 0, &data->comm)) |
return TCSERR(TSS_E_INTERNAL_ERROR); |
@@ -311,7 +311,7 @@ tcs_wrap_CreateWrapKey(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, &hWrappingKey, 0, &data->comm)) |
return TCSERR(TSS_E_INTERNAL_ERROR); |
@@ -381,7 +381,7 @@ tcs_wrap_OwnerReadInternalPub(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); |
@@ -424,7 +424,7 @@ tcs_wrap_KeyControlOwner(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); |