diff options
| author | Leandro Pereira <leandro@hardinfo.org> | 2010-01-04 13:37:10 -0200 | 
|---|---|---|
| committer | Leandro Pereira <leandro@hardinfo.org> | 2010-01-04 13:37:10 -0200 | 
| commit | baedeb4e4256a98177a7fb55a5cdced0d2f5bc5c (patch) | |
| tree | d758a19214cb8529021db6ab34adc5a1f36c9315 /hardinfo2 | |
| parent | a2309cd30ce4378c6255d32db76cfe0d2a79e836 (diff) | |
Fix compiler warning.
Diffstat (limited to 'hardinfo2')
| -rw-r--r-- | hardinfo2/callbacks.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/hardinfo2/callbacks.c b/hardinfo2/callbacks.c index a3e49ad9..e9669a26 100644 --- a/hardinfo2/callbacks.c +++ b/hardinfo2/callbacks.c @@ -198,7 +198,7 @@ void cb_open_online_docs_context()          if (shell->selected_module->dll) {              gchar *name_temp; -            name_temp = g_module_name(shell->selected_module->dll); +            name_temp = (gchar *)g_module_name(shell->selected_module->dll);              name_temp = g_path_get_basename(name_temp);              strend(name_temp, '.'); | 
