From f70403b0a5f74e13907262e668653eef29803754 Mon Sep 17 00:00:00 2001 From: "Leandro A. F. Pereira" Date: Sat, 13 Jan 2007 13:05:17 +0000 Subject: Started working on SyncManager (GUI only; does not work currently, needs backend). --- hardinfo2/hardinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hardinfo2/hardinfo.c') 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); } -- cgit v1.2.3