We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug A recent change in pull request #45 changed the TO_LAB_init function prototype to return an int32 type here:
TO_LAB_init
int32
to_lab/fsw/src/to_lab_app.c
Line 83 in 7e7dc4b
However the function is actually defined later here:
Line 158 in 7e7dc4b
This results in error if int and int32 are not actually the same type.
int
To Reproduce Build on any platform where int and int32 are not the same type (e.g. 32 bit RTEMS, for example).
Expected behavior Declaration should match definition, and it should build cleanly.
System observed on: RTEMS 4.11.3 (cross)
Reporter Info Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
fix nasa#47 - correct return type for TO_LAB_init()
dcdd0af
Merge pull request #48 from CDKnightNASA/fix-47-init_retval
922f55e
fix #47 - correct return type for TO_LAB_init()
b0b266e
Successfully merging a pull request may close this issue.
Describe the bug
A recent change in pull request #45 changed the
TO_LAB_init
function prototype to return anint32
type here:to_lab/fsw/src/to_lab_app.c
Line 83 in 7e7dc4b
However the function is actually defined later here:
to_lab/fsw/src/to_lab_app.c
Line 158 in 7e7dc4b
This results in error if
int
andint32
are not actually the same type.To Reproduce
Build on any platform where
int
andint32
are not the same type (e.g. 32 bit RTEMS, for example).Expected behavior
Declaration should match definition, and it should build cleanly.
System observed on:
RTEMS 4.11.3 (cross)
Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: