rtems: Fix typo in rtems_build_name() definition

This commit is contained in:
Sebastian Huber
2022-09-22 13:06:30 +02:00
parent ade8d995aa
commit 74a78fbfd1

View File

@@ -48,7 +48,7 @@ static rtems_name _RTEMS_Build_name( char c1, char c2, char c3, char c4 )
#undef rtems_build_name
rtems_id rtems_build_name( char c1, char c2, char c3, char c4 )
rtems_name rtems_build_name( char c1, char c2, char c3, char c4 )
{
return _RTEMS_Build_name( c1, c2, c3, c4 );
}