Skip to content

Commit

Permalink
update language of overwrite warning
Browse files Browse the repository at this point in the history
  • Loading branch information
scottdyer committed Oct 20, 2015
1 parent d95c051 commit 020599d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ctlrender/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ int main(int argc, const char **argv)
}
if (access(outputFile, F_OK) >= 0)
{
fprintf(stderr, "Can not overwrite the file '%s'.\n", outputFile);
fprintf(stderr, "Output file '%s' already exists. Refusing to overwrite.\n", outputFile);
exit(1);
}
actual_format.squish = noalpha;
Expand Down

0 comments on commit 020599d

Please sign in to comment.