diff options
| author | Josh Blum <josh@joshknows.com> | 2010-11-10 10:09:40 -0800 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2010-11-10 10:09:40 -0800 | 
| commit | 3e695d1c0026383fd0509da8e4ebbf5ce5dd1fa3 (patch) | |
| tree | f5d313dee04ca18aed03d93b41f277e292a5a1be /host | |
| parent | 3aba990a4f35c0bb58f037897f3100be77f517c1 (diff) | |
| download | uhd-3e695d1c0026383fd0509da8e4ebbf5ce5dd1fa3.tar.gz uhd-3e695d1c0026383fd0509da8e4ebbf5ce5dd1fa3.tar.bz2 uhd-3e695d1c0026383fd0509da8e4ebbf5ce5dd1fa3.zip | |
fixed string constants find and replace typo
Diffstat (limited to 'host')
| -rw-r--r-- | host/lib/usrp/usrp_e100/usrp_e100_impl.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp b/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp index 1ff135eac..8e40458d5 100644 --- a/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp +++ b/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp @@ -82,11 +82,11 @@ static device::sptr usrp_e100_make(const device_addr_t &device_addr){      //--   1) The compatibility number matches.      //--   2) The hash in the hash-file matches.      //------------------------------------------------------------------ -    static const char *hash_file_path = "/tmp/usrp_e100100_hash"; +    static const char *hash_file_path = "/tmp/usrp_e100_hash";      //extract the fpga path for usrp-e      std::string usrp_e100_fpga_image = find_image_path( -        device_addr.has_key("fpga")? device_addr["fpga"] : "usrp_e100100_fpga.bin" +        device_addr.has_key("fpga")? device_addr["fpga"] : "usrp_e100_fpga.bin"      );      //calculate a hash of the fpga file | 
