Skip to content

Commit

Permalink
Fix #429, Const string initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Dec 30, 2019
1 parent 182b640 commit d1a1b35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fsw/cfe-core/unit-test/sb_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -10416,10 +10416,10 @@ void Test_RcvMsg_UnsubResubPath(void)
*/
void Test_MessageString(void)
{
char *SrcString = "abcdefg";
const char *SrcString = "abcdefg";
char DestString[20];
char *DestStringPtr = DestString;
char *DefString = "default";
const char *DefString = "default";

SB_ResetUnitTest();

Expand Down

0 comments on commit d1a1b35

Please sign in to comment.