diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-15 21:36:27 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-15 21:36:27 +0000 |
commit | d54ab5595153b3dc57560077ff3551ffd4406b30 (patch) | |
tree | 9c48320521bf9ec3cb310c4046289d5a28ec3213 /ksysguard/ksysguardd/Solaris/NetDev.c | |
parent | 4b12a38f6e566f44f5549b4a85e3ae9e715e0d08 (diff) | |
download | tdebase-d54ab5595153b3dc57560077ff3551ffd4406b30.tar.gz tdebase-d54ab5595153b3dc57560077ff3551ffd4406b30.zip |
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
Diffstat (limited to 'ksysguard/ksysguardd/Solaris/NetDev.c')
-rw-r--r-- | ksysguard/ksysguardd/Solaris/NetDev.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/ksysguard/ksysguardd/Solaris/NetDev.c b/ksysguard/ksysguardd/Solaris/NetDev.c index 836e2832b..89db266cb 100644 --- a/ksysguard/ksysguardd/Solaris/NetDev.c +++ b/ksysguard/ksysguardd/Solaris/NetDev.c @@ -436,9 +436,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++ ) { @@ -464,9 +464,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++ ) { @@ -492,9 +492,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++ ) { @@ -520,9 +520,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++ ) { @@ -548,9 +548,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++ ) { @@ -576,9 +576,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++ ) { @@ -604,9 +604,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++ ) { @@ -632,9 +632,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++ ) { @@ -660,9 +660,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++ ) { |