Skip to content

Commit

Permalink
Merge pull request #356 from matzipan/patch-1
Browse files Browse the repository at this point in the history
Fix #357: Make parameter const
  • Loading branch information
astrogeco authored Mar 9, 2020
2 parents 7d1f33d + 2f593cb commit c53094f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/os/rtems/osloader.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ int32 OS_ModuleUnload_Impl ( uint32 module_id )
* See prototype in os-impl.h for argument/return detail
*
*-----------------------------------------------------------------*/
int32 OS_ModuleLoad_Impl ( uint32 module_id, char *translated_path )
int32 OS_ModuleLoad_Impl ( uint32 module_id, const char *translated_path )
{
return OS_SUCCESS;
} /* end OS_ModuleLoad_Impl */
Expand Down

0 comments on commit c53094f

Please sign in to comment.