diff options
Diffstat (limited to 'src/dlg-open-with.c')
-rw-r--r-- | src/dlg-open-with.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dlg-open-with.c b/src/dlg-open-with.c index 9533cf7..3e90eb4 100644 --- a/src/dlg-open-with.c +++ b/src/dlg-open-with.c @@ -414,7 +414,7 @@ dlg_open_with (FrWindow *window, if (app_names != NULL) { GList *p; for (p = app_names; p && !found; p = p->next) - if (strcmp ((char*)p->data, g_app_info_get_executable (app)) == 0) + if (g_strcmp0 ((char*)p->data, g_app_info_get_executable (app)) == 0) found = TRUE; } |