Browse Source

Don't add . to error message string

The norm is to have error strings without punctiation, so avoid adding
one as it just confuses the translators.
tags/v1.12.90
Pierre Ossman 2 years ago
parent
commit
f2d37e61c7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      vncviewer/vncviewer.cxx

+ 1
- 1
vncviewer/vncviewer.cxx View File

@@ -467,7 +467,7 @@ static void mkvnchomedir()
} else {
int result = mkdir(homeDir, 0755);
if (result == -1 && errno != EEXIST)
vlog.error(_("Could not create VNC home directory: %s."), strerror(errno));
vlog.error(_("Could not create VNC home directory: %s"), strerror(errno));
delete [] homeDir;
}
}

Loading…
Cancel
Save