Skip to content

Commit

Permalink
fix wrong folder print
Browse files Browse the repository at this point in the history
  • Loading branch information
patripfr committed Sep 27, 2024
1 parent df1ffac commit eb399ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/laserMapping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ void publish_frame_world(const ros::Publisher & pubLaserCloudFull)
}
string all_points_dir(pcd_dir + to_string(pcd_index) + string(".pcd"));
pcl::PCDWriter pcd_writer;
cout << "current scan saved to /PCD/" << all_points_dir << endl;
cout << "current scan saved to " << all_points_dir << endl;
pcd_writer.writeBinary(all_points_dir, *pcl_wait_save);
pcl_wait_save->clear();
scan_wait_num = 0;
Expand Down

0 comments on commit eb399ae

Please sign in to comment.