File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ void Stream::setTimeout(unsigned long timeout) // sets the maximum number of mi
75
75
// find returns true if the target string is found
76
76
bool Stream::find (char *target)
77
77
{
78
- return findUntil (target, NULL );
78
+ return findUntil (target, " " );
79
79
}
80
80
81
81
// reads data from the stream until the target string of given length is found
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ void Stream::setTimeout(unsigned long timeout) // sets the maximum number of mi
75
75
// find returns true if the target string is found
76
76
bool Stream::find (char *target)
77
77
{
78
- return findUntil (target, NULL );
78
+ return findUntil (target, " " );
79
79
}
80
80
81
81
// reads data from the stream until the target string of given length is found
You can’t perform that action at this time.
0 commit comments