mirror of
https://github.com/nasa/trick.git
synced 2025-04-03 01:11:27 +00:00
The character string used in the frame log needs to be stored as a character string. We were using a sprintf with a fixed size buffer. The easiest change was to use asprintf which allocates a character string big enough to hold the contents of the print. We need to save this char string as a char string so it works out.