ECC-1755: Cleanup

This commit is contained in:
Shahram Najm 2024-06-17 16:52:40 +00:00
parent 57cb9706e2
commit 13c2b40aa6
1 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ static bool eq_time(const char* l, const char* r)
return false;
}
const char* get_step_units_longname(const char* step_units)
static const char* get_step_units_longname(const char* step_units)
{
if (step_units == NULL)
return NULL;
@ -148,7 +148,7 @@ const char* get_step_units_longname(const char* step_units)
if (strcmp(step_units, "h") == 0)
return "hours";
Assert(0);
Assert(!"Unknown step units");
return NULL;
}