summaryrefslogtreecommitdiffstats
path: root/ksysguard/ksysguardd/Tru64/NetDev.c
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-15 21:36:27 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-15 21:36:27 +0000
commitd54ab5595153b3dc57560077ff3551ffd4406b30 (patch)
tree9c48320521bf9ec3cb310c4046289d5a28ec3213 /ksysguard/ksysguardd/Tru64/NetDev.c
parent4b12a38f6e566f44f5549b4a85e3ae9e715e0d08 (diff)
downloadtdebase-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/Tru64/NetDev.c')
-rw-r--r--ksysguard/ksysguardd/Tru64/NetDev.c36
1 files changed, 18 insertions, 18 deletions
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++ ) {