aboutsummaryrefslogtreecommitdiff
path: root/hardinfo
diff options
context:
space:
mode:
Diffstat (limited to 'hardinfo')
-rw-r--r--hardinfo/hardinfo.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/hardinfo/hardinfo.c b/hardinfo/hardinfo.c
index 8c19150c..9cbdebed 100644
--- a/hardinfo/hardinfo.c
+++ b/hardinfo/hardinfo.c
@@ -44,9 +44,9 @@ int main(int argc, char **argv)
/* show version information and quit */
if (params.show_version) {
- g_print("HardInfo version " VERSION "\n");
- g_print
- (_("Copyright (C) 2003-2009 Leandro A. F. Pereira. See COPYING for details.\n\n"));
+ g_print("HardInfo version " VERSION "\n");
+ g_print
+ (_(/*/ %d will be latest year of copyright*/ "Copyright (C) 2003-%d Leandro A. F. Pereira. See COPYING for details.\n\n"), 2017);
g_print(_("Compile-time options:\n"
" Release version: %s (%s)\n"
@@ -74,7 +74,7 @@ int main(int argc, char **argv)
/* list all module names */
if (params.list_modules) {
g_print(_("Modules:\n"
- "%-20s%-15s%-12s\n"), _("File Name"), _("Name"), _("Version"));
+ "%-20s %-15s %-12s\n"), _("File Name"), _("Name"), _("Version"));
for (modules = modules_load_all(); modules;
modules = modules->next) {
@@ -82,7 +82,7 @@ int main(int argc, char **argv)
ModuleAbout *ma = module_get_about(module);
gchar *name = g_path_get_basename(g_module_name(module->dll));
- g_print("%-20s%-15s%-12s\n", name, module->name, ma->version);
+ g_print("%-20s %-15s %-12s\n", name, module->name, ma->version);
g_free(name);
}