You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on logic strlen(UT_subsys) will never be bigger than int8 (unless someone redefines UT_subsys as something unreasonable) so this is a false alarm but easy to fix and better pattern to follow.
Describe the solution you'd like
Change to size_t
Describe alternatives you've considered
None
Additional context
Please wait until #972 is resolved.
Requester Info
Jacob Hageman - NASA/GSFC
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Static analysis warning on
i
being int8. Can be avoided if defined as size_t.cFE/fsw/cfe-core/unit-test/ut_support.c
Lines 82 to 90 in c708d64
Based on logic strlen(UT_subsys) will never be bigger than int8 (unless someone redefines UT_subsys as something unreasonable) so this is a false alarm but easy to fix and better pattern to follow.
Describe the solution you'd like
Change to size_t
Describe alternatives you've considered
None
Additional context
Please wait until #972 is resolved.
Requester Info
Jacob Hageman - NASA/GSFC
The text was updated successfully, but these errors were encountered: