From d54ab5595153b3dc57560077ff3551ffd4406b30 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 15 Aug 2011 21:36:27 +0000 Subject: Fix a number of issues in kdebase caused by C style casts This includes Bug #492 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1247425 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdm/backend/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kdm/backend/process.c') diff --git a/kdm/backend/process.c b/kdm/backend/process.c index 8e21d789b..f9d34fe7f 100644 --- a/kdm/backend/process.c +++ b/kdm/backend/process.c @@ -276,7 +276,7 @@ locate( const char *exe ) memcpy( name, exe, len + 1 ); *--name = '/'; do { - if (!(pathe = (char*)strchr( path, ':' ))) + if (!(pathe = strchr( path, ':' ))) pathe = path + strlen( path ); len = pathe - path; if (len && !(len == 1 && *path == '.')) { -- cgit v1.2.1