diff options
Diffstat (limited to 'ksysguard/ksysguardd/Linux/stat.c')
-rw-r--r-- | ksysguard/ksysguardd/Linux/stat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksysguard/ksysguardd/Linux/stat.c b/ksysguard/ksysguardd/Linux/stat.c index 9bc576deb..0e03e4d53 100644 --- a/ksysguard/ksysguardd/Linux/stat.c +++ b/ksysguard/ksysguardd/Linux/stat.c @@ -267,10 +267,10 @@ static int processDiskIO( const char* buf ) } /* Move p after the sencond ')'. We can safely assume that * those two ')' exist. */ - p = (char*)strchr( p, ')' ) + 1; - p = (char*)strchr( p, ')' ) + 1; + p = strchr( p, ')' ) + 1; + p = strchr( p, ')' ) + 1; if ( p && *p ) - p = (char*)strchr( p, '(' ); + p = strchr( p, '(' ); } return 0; |