diff options
author | Nick Foster <nick@ettus.com> | 2011-05-23 21:49:28 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-14 17:27:46 -0700 |
commit | 3dca19a3e7f56c64423789ee025f16150b1a2cdb (patch) | |
tree | 6d168b13e0a73c9606dc168752879ee8bbb86498 /host/include | |
parent | 75d0a41c3a7a2c7cd62a6c6b27e648d5617d488e (diff) | |
download | uhd-3dca19a3e7f56c64423789ee025f16150b1a2cdb.tar.gz uhd-3dca19a3e7f56c64423789ee025f16150b1a2cdb.tar.bz2 uhd-3dca19a3e7f56c64423789ee025f16150b1a2cdb.zip |
UHD: Fixed convert_test (scalars backwards), fixed Orc conversions (endianness backwards).
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/convert.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/convert.hpp b/host/include/uhd/convert.hpp index 99f1860ae..c30484384 100644 --- a/host/include/uhd/convert.hpp +++ b/host/include/uhd/convert.hpp @@ -40,7 +40,7 @@ namespace uhd{ namespace convert{ */ enum priority_type{ PRIORITY_GENERAL = 0, - PRIORITY_LIBORC = 1, + PRIORITY_LIBORC = 4, PRIORITY_CUSTOM = 2, PRIORITY_EMPTY = -1, }; |