Skip to content

Commit

Permalink
use correct apostrophe in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
erf committed Jan 30, 2024
1 parent 5cd6d03 commit fe531a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2332,7 +2332,7 @@ int main(int argc, char *argv[]) {
cmd = argv[i] + (argv[i][1] == '/' || argv[i][1] == '?');
continue;
} else if (!vis_window_new(vis, argv[i])) {
vis_die(vis, "Can not load `%s': %s\n", argv[i], strerror(errno));
vis_die(vis, "Can not load '%s': %s\n", argv[i], strerror(errno));
}
win_created = true;
if (cmd) {
Expand Down

0 comments on commit fe531a6

Please sign in to comment.