Skip to content

Commit

Permalink
projinfo: fix error message regarding --output-id
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 23, 2021
1 parent bfa170c commit 08d4b05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/projinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1312,10 +1312,10 @@ int main(int argc, char **argv) {
if (outputAll) {
outputOpt.SQL = false;
std::cerr << "WARNING: SQL output disable since "
"--output-id=AUTH:CODE has not been specified."
"--output-id AUTH:CODE has not been specified."
<< std::endl;
} else {
std::cerr << "ERROR: --output-id=AUTH:CODE must be specified when "
std::cerr << "ERROR: --output-id AUTH:CODE must be specified when "
"SQL output is enabled."
<< std::endl;
std::exit(1);
Expand Down

0 comments on commit 08d4b05

Please sign in to comment.