tests: Use snprintf instead of sprintf

sprintf now results in a deprecation warning in Xcode 14 beta.
This commit is contained in:
Arseny Kapoulkine 2022-07-21 20:51:26 -07:00
parent 2639dfd053
commit ab8453c572
2 changed files with 2 additions and 2 deletions

View file

@ -736,7 +736,7 @@ struct temp_file
temp_file()
{
static int index = 0;
sprintf(path, "%stempfile%d", test_runner::_temp_path, index++);
snprintf(path, sizeof(path), "%stempfile%d", test_runner::_temp_path, index++);
}
~temp_file()

View file

@ -795,7 +795,7 @@ struct test_walker: xml_tree_walker
std::basic_string<char_t> depthstr() const
{
char buf[32];
sprintf(buf, "%d", depth());
snprintf(buf, sizeof(buf), "%d", depth());
#ifdef PUGIXML_WCHAR_MODE
wchar_t wbuf[32];