Skip to content

Commit

Permalink
Fixed auto_proj error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Lacey committed Mar 2, 2012
1 parent f035daf commit 3ba2270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto_proj/src/auto_proj.cpp
Expand Up @@ -130,7 +130,7 @@ int main(int argc, char *argv[]) {
bool loadOkay = project.LoadFile();

if (!loadOkay) {
std::cerr << "Cannot load XML file `" << argv[0] << "'" << std::endl;
std::cerr << "Cannot load XML file `" << argv[1] << "'" << std::endl;
std::cerr << project.ErrorDesc() << std::endl;
exit(1);
}
Expand Down

0 comments on commit 3ba2270

Please sign in to comment.