Skip to content

Commit

Permalink
Fix #357, Fix OS_ModuleLoad_Impl when loader is disabled
Browse files Browse the repository at this point in the history
When OS_INCLUDE_MODULE_LOADER is disabled, the function header does not
match the definition.
  • Loading branch information
matzipan authored and astrogeco committed Mar 10, 2020
1 parent a1e9dbf commit f23a842
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 f23a842

Please sign in to comment.