aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/hardinfo.c
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2007-01-13 13:05:17 +0000
committerLeandro A. F. Pereira <leandro@hardinfo.org>2007-01-13 13:05:17 +0000
commitf70403b0a5f74e13907262e668653eef29803754 (patch)
tree498345255df4283ba01b9f27a477005183cf11e5 /hardinfo2/hardinfo.c
parentb1d1223551baa57174020af62c58016deca90096 (diff)
Started working on SyncManager (GUI only; does not work currently, needs backend).
Diffstat (limited to 'hardinfo2/hardinfo.c')
-rw-r--r--hardinfo2/hardinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hardinfo2/hardinfo.c b/hardinfo2/hardinfo.c
index fa80dd3e..3c01529c 100644
--- a/hardinfo2/hardinfo.c
+++ b/hardinfo2/hardinfo.c
@@ -72,15 +72,15 @@ main(int argc, char **argv)
/* list all module names */
if (params.list_modules) {
g_print("Modules:\n"
- "%-20s%-15s%-12s%-20s\n", "File Name", "Name", "Version", "Author");
+ "%-20s%-15s%-12s\n", "File Name", "Name", "Version");
for (modules = modules_load_all(); modules; modules = modules->next) {
ShellModule *module = (ShellModule *) modules->data;
ModuleAbout *ma = module_get_about(module);
gchar *name = g_path_get_basename(g_module_name(module->dll));
- g_print("%-20s%-15s%-12s%-20s\n",
- name, module->name, ma->version, ma->author);
+ g_print("%-20s%-15s%-12s\n",
+ name, module->name, ma->version);
g_free(name);
}