Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .ci/get-boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ git submodule --quiet update --init $GIT_SUBMODULE_OPTS \
libs/ratio \
libs/rational \
libs/regex \
libs/static_assert \
libs/smart_ptr \
libs/system \
libs/throw_exception \
Expand Down
4 changes: 2 additions & 2 deletions include/boost/gil/extension/io/tiff/detail/log.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class console_log
)
{
char buf[1000];
sprintf(buf, fmt, ap);
snprintf(buf, 1000, fmt, ap);
std::cout << "error: " << buf << std::endl;
}

Expand All @@ -55,7 +55,7 @@ class console_log
)
{
char buf[1000];
sprintf(buf, fmt, ap);
snprintf(buf, 1000, fmt, ap);
std::cout << "warning: " << fmt << std::endl;
}
};
Expand Down
5 changes: 3 additions & 2 deletions meta/libraries.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
"Iterators"
],
"maintainers": [
"Stefan Seefeld <stefan -at- seefeld.name>",
"Samuel Debionne",
"Pranam Lashkari <plashkari628 -at- gmail.com>",
"Mateusz Loskot <mateusz -at- loskot.net>",
"Pranam Lashkari <plashkari628 -at- gmail.com>"
"Stefan Seefeld <stefan -at- seefeld.name>"
],
"cxxstd": "14"
}