Skip to content

Commit 02e817a

Browse files
committed
Fixed minor text typos in source code (error message strings).
1 parent fcbc499 commit 02e817a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/bsp/generic-vxworks/src/bsp_start.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int OS_BSPMain(void)
108108

109109
if (OS_BSP_GenericVxWorksGlobal.AccessMutex == (SEM_ID)0)
110110
{
111-
BSP_DEBUG("semMInitalize: errno=%d\n", errno);
111+
BSP_DEBUG("semMInitialize: errno=%d\n", errno);
112112
}
113113

114114
/*

src/os/rtems/src/os-impl-loader.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ int32 OS_ModuleLoad_Impl(const OS_object_token_t *token, const char *translated_
144144
* is acceptable. If not acceptable, it sets the status back to an error.
145145
*/
146146

147-
OS_DEBUG("module has has unresolved externals\n");
147+
OS_DEBUG("Module has unresolved externals\n");
148148
status = OS_SUCCESS; /* note - not final, probably overridden */
149149
OSAL_UNRESOLVED_ITERATE(OS_rtems_rtl_check_unresolved, &status);
150150
}

src/os/vxworks/src/os-impl-mutex.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ int32 OS_MutSemCreate_Impl(const OS_object_token_t *token, uint32 options)
8181

8282
if (tmp_sem_id == (SEM_ID)0)
8383
{
84-
OS_DEBUG("semMInitalize() - vxWorks errno %d\n", errno);
84+
OS_DEBUG("semMInitialize() - vxWorks errno %d\n", errno);
8585
return OS_SEM_FAILURE;
8686
}
8787

0 commit comments

Comments
 (0)