aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/util.c
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2006-12-01 12:01:22 +0000
committerLeandro A. F. Pereira <leandro@hardinfo.org>2006-12-01 12:01:22 +0000
commit8a9fdae124e2e976c05b190ca83c65e07ca913a4 (patch)
treeaa089323756a5cd6d4b7dc85cbf1f5e87a321dae /hardinfo2/util.c
parent542947560c4bc8301917a4ab9e9a1f625da0b1af (diff)
More and more and more cleanups
Diffstat (limited to 'hardinfo2/util.c')
-rw-r--r--hardinfo2/util.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/hardinfo2/util.c b/hardinfo2/util.c
index 129b921f..ce34a010 100644
--- a/hardinfo2/util.c
+++ b/hardinfo2/util.c
@@ -208,7 +208,7 @@ gboolean binreloc_init(gboolean try_hardcoded)
g_free(tmp);
params.path_data = params.path_lib = NULL;
-
+
if (try_hardcoded) {
/* We tried the hardcoded paths, but still was unable to find the
runtime data. Give up. */
@@ -291,7 +291,7 @@ void parameters_init(int *argc, char ***argv, ProgramParameters * param)
.short_name = 'm',
.arg = G_OPTION_ARG_STRING_ARRAY,
.arg_data = &use_modules,
- .description = "specify module file name to load; may be used more than once"
+ .description = "specify module to load"
},
{
.long_name = "version",
@@ -335,10 +335,12 @@ gboolean ui_init(int *argc, char ***argv)
void open_url(gchar * url)
{
- const gchar *browsers[] =
- { "xdg-open", "gnome-open", "kfmclient openURL", "sensible-browser",
- "firefox", "epiphany", "galeon", "mozilla", "opera", "konqueror",
- "netscape", "links -g", NULL };
+ const gchar *browsers[] = {
+ "xdg-open", "gnome-open", "kfmclient openURL",
+ "sensible-browser", "firefox", "epiphany",
+ "galeon", "mozilla", "opera", "konqueror",
+ "netscape", "links -g", NULL
+ };
gint i;
for (i = 0; browsers[i]; i++) {
@@ -409,8 +411,7 @@ static ShellModule *module_load(gchar *filename) {
const gchar *(*shell_name) (gint);
ShellModuleEntry *entry = g_new0(ShellModuleEntry, 1);
- if (params.gui_running
- && g_module_symbol(module->dll, "hi_icon",
+ if (params.gui_running && g_module_symbol(module->dll, "hi_icon",
(gpointer) & (shell_icon))) {
entry->icon = shell_icon(i);
}