fbset: fix buglet where we were using wrong pointer
readahead: stop using stdio.h *: style fixes
This commit is contained in:
@@ -130,7 +130,8 @@ static const char *obscure_msg(const char *old_p, const char *new_p, const struc
|
||||
c = 0;
|
||||
p = new_p;
|
||||
while (1) {
|
||||
if ((p = strchr(p, new_p[i])) == NULL) {
|
||||
p = strchr(p, new_p[i]);
|
||||
if (p == NULL) {
|
||||
break;
|
||||
}
|
||||
c++;
|
||||
|
||||
Reference in New Issue
Block a user