From 867c5dd51fb71d2538a73d983fc63cccbb0df48d Mon Sep 17 00:00:00 2001 From: sebastid Date: Tue, 19 Sep 2006 21:50:20 +0000 Subject: [PATCH] Don't check argv twice, one check should be for argc SVN revision: 25981 --- src/bin/e_apps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_apps.c b/src/bin/e_apps.c index e714b3c9e..41966b7b1 100644 --- a/src/bin/e_apps.c +++ b/src/bin/e_apps.c @@ -950,7 +950,7 @@ e_app_border_find(E_Border *bd) ((a->win_role) && (bd->client.icccm.window_role) && (e_util_glob_match(bd->client.icccm.window_role, a->win_role)))) ok++; if ( - (a->exe) && (bd->client.icccm.command.argv) && (bd->client.icccm.command.argv)) + (a->exe) && (bd->client.icccm.command.argc) && (bd->client.icccm.command.argv)) { char *ts, *p;