| Index: src/tcs/rpc/tcstp/rpc_counter.c
|
| diff --git a/src/tcs/rpc/tcstp/rpc_counter.c b/src/tcs/rpc/tcstp/rpc_counter.c
|
| index 9bd05f3af5411b03fe5d9dd9681db528895580f6..6bb654e8bad732444a64efe99be3f7ef6a78f56d 100644
|
| --- a/src/tcs/rpc/tcstp/rpc_counter.c
|
| +++ b/src/tcs/rpc/tcstp/rpc_counter.c
|
| @@ -38,7 +38,7 @@ tcs_wrap_ReadCounter(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, &idCounter, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -75,7 +75,7 @@ tcs_wrap_CreateCounter(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, &LabelSize, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -134,7 +134,7 @@ tcs_wrap_IncrementCounter(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, &idCounter, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -171,7 +171,7 @@ tcs_wrap_ReleaseCounter(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, &idCounter, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -206,7 +206,7 @@ tcs_wrap_ReleaseCounterOwner(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, &idCounter, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|