Skip to content

Commit

Permalink
Align with previous error message
Browse files Browse the repository at this point in the history
  • Loading branch information
DyfanJones committed Jan 2, 2025
1 parent 348e6e4 commit 7129180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paws.common/src/ini_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ std::vector<std::string> scan_ini_file(const std::string &filename)
FILE *file = fopen(filename.c_str(), "r");
if (!file)
{
Rcpp::stop("Can't load the INI file: " + filename);
Rcpp::stop("Unable to find file: " + filename);
}

std::vector<std::string> lines;
Expand Down

0 comments on commit 7129180

Please sign in to comment.