diff options
author | beanz <beanz@marvell.com> | 2012-11-07 10:58:59 +0800 |
---|---|---|
committer | beanz <beanz@marvell.com> | 2012-11-07 10:58:59 +0800 |
commit | 437ced8a14944bf5450df50c5e7e7a6dfe20ea40 (patch) | |
tree | fdb0bc0057a20c75b9102cdb45b7151ef1e30ce1 /libvideoeditor/osal | |
parent | 1baa01a52f24566c134313fade8b19a582654638 (diff) | |
download | frameworks_av-437ced8a14944bf5450df50c5e7e7a6dfe20ea40.zip frameworks_av-437ced8a14944bf5450df50c5e7e7a6dfe20ea40.tar.gz frameworks_av-437ced8a14944bf5450df50c5e7e7a6dfe20ea40.tar.bz2 |
libvideoeditor: fix code bugs when enabling all-level debugging macros
Change-Id: Ic8aedfa821d79698d31cf7ee3bf382aae85981f6
Signed-off-by: beanz <beanz@marvell.com>
Diffstat (limited to 'libvideoeditor/osal')
-rwxr-xr-x | libvideoeditor/osal/inc/M4OSA_Debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvideoeditor/osal/inc/M4OSA_Debug.h b/libvideoeditor/osal/inc/M4OSA_Debug.h index b06183d..826ab51 100755 --- a/libvideoeditor/osal/inc/M4OSA_Debug.h +++ b/libvideoeditor/osal/inc/M4OSA_Debug.h @@ -68,14 +68,14 @@ extern M4OSA_Void M4OSA_DEBUG_traceFunction(M4OSA_UInt32 line, if(cond)\ {\ M4OSA_DEBUG_traceFunction(__LINE__, (M4OSA_Char*)__FILE__, level,\ - (M4OSA_Char*)#cond, (M4OSA_Char*)msg, + (M4OSA_Char*)#cond, (M4OSA_Char*)msg,\ (errorCode));\ return(errorCode);\ } #define M4OSA_DEBUG(errorCode, msg)\ M4OSA_DEBUG_traceFunction(__LINE__, (M4OSA_Char*)__FILE__, 1,\ - (M4OSA_Char*)#errorCode, (M4OSA_Char*)msg, + (M4OSA_Char*)#errorCode, (M4OSA_Char*)msg,\ (errorCode)); #else /*(M4OSA_DEBUG_LEVEL >= 1) || (M4OSA_SUPER_DEBUG_LEVEL >= 1)*/ |