diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/orient_polygon_soup_test.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/orient_polygon_soup_test.cpp index 45da54d1562..e44c71e3868 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/orient_polygon_soup_test.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/orient_polygon_soup_test.cpp @@ -54,7 +54,7 @@ std::istream& read_soup( return stream; } -void sufffle_off(const char* fname_in, const char* fname_out) +void shuffle_off(const char* fname_in, const char* fname_out) { std::ifstream input(fname_in); if ( !input ){ @@ -97,7 +97,7 @@ int main(int,char** ) { std::vector points; std::vector< std::vector > polygons; - sufffle_off("data/elephant.off", "elephant-shuffled.off"); + shuffle_off("data/elephant.off", "elephant-shuffled.off"); std::ifstream input("elephant-shuffled.off"); if ( !input || !read_soup(input, points, polygons)){ std::cerr << "Error: can not shuffled file.\n";