aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@linaro.org>2018-09-27 10:24:34 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-10-15 15:30:31 +0300
commitbe8708c4939130a34340570c7d4b461980dfef5a (patch)
treee90fab14ef38eaf5ca330216c997e9c6effdfa05
parenta883d385247659b14c69152950a80beb74e47d70 (diff)
linux-gen: queue: fix error print format
Add missing '%' from printf formats. Also use hex instead of int format as queue handles are pointers. Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--platform/linux-generic/odp_queue_basic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/linux-generic/odp_queue_basic.c b/platform/linux-generic/odp_queue_basic.c
index 3f00cc118..9eb3c79eb 100644
--- a/platform/linux-generic/odp_queue_basic.c
+++ b/platform/linux-generic/odp_queue_basic.c
@@ -559,7 +559,7 @@ static int error_enqueue(odp_queue_t handle, odp_buffer_hdr_t *buf_hdr)
{
(void)buf_hdr;
- ODP_ERR("Enqueue not supported (" PRIu64 ")\n",
+ ODP_ERR("Enqueue not supported (0x%" PRIx64 ")\n",
odp_queue_to_u64(handle));
return -1;
@@ -571,7 +571,7 @@ static int error_enqueue_multi(odp_queue_t handle,
(void)buf_hdr;
(void)num;
- ODP_ERR("Enqueue multi not supported (" PRIu64 ")\n",
+ ODP_ERR("Enqueue multi not supported (0x%" PRIx64 ")\n",
odp_queue_to_u64(handle));
return -1;
@@ -579,7 +579,7 @@ static int error_enqueue_multi(odp_queue_t handle,
static odp_buffer_hdr_t *error_dequeue(odp_queue_t handle)
{
- ODP_ERR("Dequeue not supported (" PRIu64 ")\n",
+ ODP_ERR("Dequeue not supported (0x%" PRIx64 ")\n",
odp_queue_to_u64(handle));
return NULL;
@@ -591,7 +591,7 @@ static int error_dequeue_multi(odp_queue_t handle,
(void)buf_hdr;
(void)num;
- ODP_ERR("Dequeue multi not supported (" PRIu64 ")\n",
+ ODP_ERR("Dequeue multi not supported (0x%" PRIx64 ")\n",
odp_queue_to_u64(handle));
return -1;
@@ -623,7 +623,7 @@ static int queue_info(odp_queue_t handle, odp_queue_info_t *info)
queue_id = queue_to_index(handle);
if (odp_unlikely(queue_id >= ODP_CONFIG_QUEUES)) {
- ODP_ERR("Invalid queue handle:%" PRIu64 "\n",
+ ODP_ERR("Invalid queue handle: 0x%" PRIx64 "\n",
odp_queue_to_u64(handle));
return -1;
}