bladeRF: Fixed typo in handling 'stream_timeout_ms' device argument

This commit is contained in:
Jon Szymaniak 2014-04-13 18:18:18 -04:00 committed by Dimitri Stolnikov
parent 37b09bc559
commit 23ea2fcfb4
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ void bladerf_common::init(dict_t &dict, bladerf_module module)
_stream_timeout_ms = 3000; _stream_timeout_ms = 3000;
if (dict.count("stream_timeout_ms")) { if (dict.count("stream_timeout_ms")) {
_stream_timeout_ms = boost::lexical_cast< unsigned int >(dict["stream_timout_ms"] ); _stream_timeout_ms = boost::lexical_cast< unsigned int >(dict["stream_timeout_ms"] );
} }
/* Require value to be >= 2 so we can ensure we have twice as many /* Require value to be >= 2 so we can ensure we have twice as many