Skip to content

Commit

Permalink
Merge pull request #84 from thnkslprpt/fix-83-return-parentheses
Browse files Browse the repository at this point in the history
Fix #83, Remove unnecessary parentheses around return values.
  • Loading branch information
dzbaker committed Oct 3, 2022
2 parents f47613f + bc1509c commit 986d6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsw/src/sample_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ int32 SAMPLE_LIB_Function(void)
{
OS_printf("SAMPLE_LIB_Function called, buffer=\'%s\'\n", SAMPLE_LIB_Buffer);

return (CFE_SUCCESS);
return CFE_SUCCESS;

} /* End SAMPLE_LIB_Function */

Expand Down

0 comments on commit 986d6b0

Please sign in to comment.