Explorar el Código

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 hace 2 años
padre
commit
f2d37e61c7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      vncviewer/vncviewer.cxx

+ 1
- 1
vncviewer/vncviewer.cxx Ver fichero

@@ -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;
}
}

Cargando…
Cancelar
Guardar