mirror of https://github.com/xzeldon/htop.git
parent
1a604a05a5
commit
571ae33bb4
2
String.c
2
String.c
|
@ -118,7 +118,7 @@ char* String_getToken(const char* line, const unsigned short int numMatch) {
|
||||||
count++;
|
count++;
|
||||||
|
|
||||||
if(inWord == 1){
|
if(inWord == 1){
|
||||||
if (count == numMatch && line[i] != ' ' && line[i] != '\0' && line[i] != '\n' && line[i] != EOF) {
|
if (count == numMatch && line[i] != ' ' && line[i] != '\0' && line[i] != '\n' && line[i] != (char)EOF) {
|
||||||
match[foundCount] = line[i];
|
match[foundCount] = line[i];
|
||||||
foundCount++;
|
foundCount++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue