Skip to content

Commit a29d8d3

Browse files
committed
Bugfix: create_directory -> create_directories
1 parent 9a42a07 commit a29d8d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/summaries/summary_dump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ std::string dump_goto_program_in_html(
743743
const std::vector<irep_idt> &inverted_functions_topological_order,
744744
const boost::filesystem::path &dump_root_directory)
745745
{
746-
boost::filesystem::create_directory(dump_root_directory);
746+
boost::filesystem::create_directories(dump_root_directory);
747747

748748
namespacet const ns(program.symbol_table);
749749
goto_functionst::function_mapt const& functions =

0 commit comments

Comments
 (0)