1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-10-13 23:48:28 +03:00

Merge branch 'master' into HEAD

This commit is contained in:
Cristian Maglie
2014-06-13 10:29:12 +02:00
4 changed files with 5 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ void Stream::setTimeout(unsigned long timeout) // sets the maximum number of mi
// find returns true if the target string is found
bool Stream::find(char *target)
{
return findUntil(target, NULL);
return findUntil(target, "");
}
// reads data from the stream until the target string of given length is found