Skip to content

Commit

Permalink
Fixed minor text typos in source code (error message strings).
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Sep 2, 2021
1 parent fcbc499 commit 02e817a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bsp/generic-vxworks/src/bsp_start.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ int OS_BSPMain(void)

if (OS_BSP_GenericVxWorksGlobal.AccessMutex == (SEM_ID)0)
{
BSP_DEBUG("semMInitalize: errno=%d\n", errno);
BSP_DEBUG("semMInitialize: errno=%d\n", errno);
}

/*
Expand Down
2 changes: 1 addition & 1 deletion src/os/rtems/src/os-impl-loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ int32 OS_ModuleLoad_Impl(const OS_object_token_t *token, const char *translated_
* is acceptable. If not acceptable, it sets the status back to an error.
*/

OS_DEBUG("module has has unresolved externals\n");
OS_DEBUG("Module has unresolved externals\n");
status = OS_SUCCESS; /* note - not final, probably overridden */
OSAL_UNRESOLVED_ITERATE(OS_rtems_rtl_check_unresolved, &status);
}
Expand Down
2 changes: 1 addition & 1 deletion src/os/vxworks/src/os-impl-mutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ int32 OS_MutSemCreate_Impl(const OS_object_token_t *token, uint32 options)

if (tmp_sem_id == (SEM_ID)0)
{
OS_DEBUG("semMInitalize() - vxWorks errno %d\n", errno);
OS_DEBUG("semMInitialize() - vxWorks errno %d\n", errno);
return OS_SEM_FAILURE;
}

Expand Down

0 comments on commit 02e817a

Please sign in to comment.