From ee5743f0e930c7fce9cecd9afb2bfbaefc49509a Mon Sep 17 00:00:00 2001 From: ChenHengming Date: Wed, 10 Aug 2016 03:20:18 +0000 Subject: [PATCH] [mpi]: fix mpi function print error git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@1183 6e48237b-75ef-9749-8fc9-41990f28c85a --- mpp/mpi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mpp/mpi.cpp b/mpp/mpi.cpp index 0f0add16..544a0385 100644 --- a/mpp/mpi.cpp +++ b/mpp/mpi.cpp @@ -239,7 +239,7 @@ static MPP_RET mpi_dequeue(MppCtx ctx, MppPortType type, MppTask *task) MPP_RET ret = MPP_NOK; MpiImpl *p = (MpiImpl *)ctx; - mpi_dbg_func("enter ctx %p type task %p\n", ctx, type, task); + mpi_dbg_func("enter ctx %p type %d task %p\n", ctx, type, task); do { ret = check_mpp_ctx(p); if (ret) @@ -263,7 +263,7 @@ static MPP_RET mpi_enqueue(MppCtx ctx, MppPortType type, MppTask task) MPP_RET ret = MPP_NOK; MpiImpl *p = (MpiImpl *)ctx; - mpi_dbg_func("enter ctx %p type task %p\n", ctx, type, task); + mpi_dbg_func("enter ctx %p type %d task %p\n", ctx, type, task); do { ret = check_mpp_ctx(p); if (ret)