diff options
Diffstat (limited to 'ksysguard/ksysguardd/Linux/netdev.c')
-rw-r--r-- | ksysguard/ksysguardd/Linux/netdev.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ksysguard/ksysguardd/Linux/netdev.c b/ksysguard/ksysguardd/Linux/netdev.c index bba927e19..c2ef2d16f 100644 --- a/ksysguard/ksysguardd/Linux/netdev.c +++ b/ksysguard/ksysguardd/Linux/netdev.c @@ -165,7 +165,7 @@ static int processNetDev_( void ) netDevBufP += strlen( buf ) + 1; /* move netDevBufP to next line */ if ( sscanf( buf, devFormat, tag ) ) { - char* pos = (char*)strchr( tag, ':' ); + char* pos = strchr( tag, ':' ); if ( pos ) { FORALL( DEFVARS ); *pos = '\0'; @@ -289,7 +289,7 @@ void initNetDev( struct SensorModul* sm ) netDevBufP += strlen( buf ) + 1; /* move netDevBufP to next line */ if ( sscanf( buf, devFormat, tag ) ) { - char* pos = (char*)strchr( tag, ':' ); + char* pos = strchr( tag, ':' ); if ( pos ) { char mon[ MON_SIZE ]; *pos = '\0'; @@ -450,9 +450,9 @@ void printNetDev##a( const char* cmd ) \ char* end; \ char dev[ 64 ]; \ \ - beg = (char*)strchr( cmd, '/' ); \ - beg = (char*)strchr( beg + 1, '/' ); \ - end = (char*)strchr( beg + 1, '/' ); \ + beg = strchr( cmd, '/' ); \ + beg = strchr( beg + 1, '/' ); \ + end = strchr( beg + 1, '/' ); \ strncpy( dev, beg + 1, end - beg - 1 ); \ dev[ end - beg - 1 ] = '\0'; \ \ |