summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnkur2019-07-02 01:06:07 -0500
committerAnkur2019-07-08 22:23:22 -0500
commit8503eb656aa6e7cba489c936e0bf6e041f3caf57 (patch)
treed00715f7c471dfc086c64bbdf00fea1ac3d748e2
parent056c290aa925c80358343a3e822f19452bb3d5cd (diff)
downloadosal-REL.PDK.J7.00.09.00.14.tar.gz
osal-REL.PDK.J7.00.09.00.14.tar.xz
osal-REL.PDK.J7.00.09.00.14.zip
Signed-off-by: Ankur <a0132173@ti.com>
-rwxr-xr-x[-rw-r--r--]src/tirtos/SwiP_tirtos.c4
-rwxr-xr-x[-rw-r--r--]src/tirtos/Utils_tirtos.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tirtos/SwiP_tirtos.c b/src/tirtos/SwiP_tirtos.c
index 762bf42..6651592 100644..100755
--- a/src/tirtos/SwiP_tirtos.c
+++ b/src/tirtos/SwiP_tirtos.c
@@ -88,8 +88,8 @@ SwiP_Status SwiP_delete(SwiP_Handle *pHandle)
88 */ 88 */
89void SwiP_Params_init(SwiP_Params *params) 89void SwiP_Params_init(SwiP_Params *params)
90{ 90{
91 params->arg0 = NULL; 91 params->arg0 = (UArg)NULL;
92 params->arg1 = NULL; 92 params->arg1 = (UArg)NULL;
93} 93}
94 94
95/* 95/*
diff --git a/src/tirtos/Utils_tirtos.c b/src/tirtos/Utils_tirtos.c
index 80e217b..847d55f 100644..100755
--- a/src/tirtos/Utils_tirtos.c
+++ b/src/tirtos/Utils_tirtos.c
@@ -96,7 +96,7 @@ void _DebugP_assert(int32_t expression, const char *file, int32_t line); /*for m
96void _DebugP_assert(int32_t expression, const char *file, int32_t line) 96void _DebugP_assert(int32_t expression, const char *file, int32_t line)
97{ 97{
98 if (expression) { 98 if (expression) {
99 xdc_runtime_Assert_raise__I(Module__MID, file, line, NULL); 99 xdc_runtime_Assert_raise__I(Module__MID, file, line, (UArg)NULL);
100 } 100 }
101} 101}
102 102