mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Drop redundant casts to the same type
This commit is contained in:

committed by
cgzones

parent
214c742ae1
commit
843949131a
@ -112,7 +112,7 @@ char* String_getToken(const char* line, const unsigned short int numMatch) {
|
||||
}
|
||||
|
||||
match[foundCount] = '\0';
|
||||
return((char*)xStrdup(match));
|
||||
return xStrdup(match);
|
||||
}
|
||||
|
||||
char* String_readLine(FILE* fd) {
|
||||
|
Reference in New Issue
Block a user