Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration Candidate 20191030 #281

Merged
merged 10 commits into from
Nov 7, 2019
Prev Previous commit
Next Next commit
Fix #273: Correct format code in debug message
Cast the address value so it may be printed as an integer.
  • Loading branch information
jphickey authored and skliper committed Oct 31, 2019
commit c75b38de66369b19bae3e4a464569bc99353ba46
2 changes: 1 addition & 1 deletion src/os/rtems/osfilesys.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ int32 OS_FileSysStartVolume_Impl (uint32 filesys_id)
impl->mount_fstype = RTEMS_FILESYSTEM_TYPE_RFS;

OS_DEBUG("OSAL: RAM disk initialized: volume=%s device=%s address=0x%08lX\n",
local->volume_name, impl->blockdev_name, local->address);
local->volume_name, impl->blockdev_name, (unsigned long)local->address);

return_code = OS_SUCCESS;
break;
Expand Down