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 --- ksysguard/ksysguardd/Tru64/NetDev.c | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'ksysguard/ksysguardd/Tru64/NetDev.c') diff --git a/ksysguard/ksysguardd/Tru64/NetDev.c b/ksysguard/ksysguardd/Tru64/NetDev.c index a28c7ecf7..0699b929a 100644 --- a/ksysguard/ksysguardd/Tru64/NetDev.c +++ b/ksysguard/ksysguardd/Tru64/NetDev.c @@ -435,9 +435,9 @@ void printIPackets( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -463,9 +463,9 @@ void printOPackets( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -491,9 +491,9 @@ void printIErrors( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -519,9 +519,9 @@ void printOErrors( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -547,9 +547,9 @@ void printCollisions( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -575,9 +575,9 @@ void printMultiXmits( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -603,9 +603,9 @@ void printMultiRecvs( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -631,9 +631,9 @@ void printBcastXmits( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -659,9 +659,9 @@ void printBcastRecvs( const char *cmd ) { char *name, *ptr; int i; - ptr = (char*)strchr( cmdcopy, (int) '/' ); + ptr = strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = (char*)strchr( name, (int) '/' ); + ptr = strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { -- cgit v1.2.1