Skip to content

Commit

Permalink
[shell] NULL to nullptr.
Browse files Browse the repository at this point in the history
  • Loading branch information
turon committed Jun 13, 2022
1 parent 42d37ed commit 3c70ad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/shell/tests/TestShellTokenizeLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ static const nlTest sTests[] = {

int TestShellTokenizeLine(void)
{
nlTestSuite theSuite = { "Test Shell: MainLoop", &sTests[0], NULL, NULL };
nlTestSuite theSuite = { "Test Shell: MainLoop", &sTests[0], nullptr, nullptr };

// Run test suit againt one context.
nlTestRunner(&theSuite, NULL);
nlTestRunner(&theSuite, nullptr);
return nlTestRunnerStats(&theSuite);
}

Expand Down

0 comments on commit 3c70ad7

Please sign in to comment.