diff options
| author | Stephen Sinclair <radarsat1@gmail.com> | 2016-02-12 14:12:16 -0300 |
|---|---|---|
| committer | Stephen Sinclair <radarsat1@gmail.com> | 2016-02-12 14:58:32 -0300 |
| commit | 77cfec0f03ce712410620d93fd698561901bdaf7 (patch) | |
| tree | 4a1ed4da8d3d8cf49f805a2d18c566e2f50de7a5 /tests/duplex.cpp | |
| parent | 70b95123e8cf93092d23688a65fb276e98d42f5e (diff) | |
Revert "duplex test: 64 bit compatibility"
This reverts commit f639653f5ecf98d3b093049435df5631d8eb0f44.
This change breaks the build with g++ 5.2.1 (Ubuntu 15.10).
Diffstat (limited to 'tests/duplex.cpp')
| -rw-r--r-- | tests/duplex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/duplex.cpp b/tests/duplex.cpp index 43d1217..06462f2 100644 --- a/tests/duplex.cpp +++ b/tests/duplex.cpp @@ -55,7 +55,7 @@ int inout( void *outputBuffer, void *inputBuffer, unsigned int /*nBufferFrames*/ // a simple buffer copy operation here. if ( status ) std::cout << "Stream over/underflow detected." << std::endl; - uint32_t *bytes = (uint32_t *) data; + unsigned int *bytes = (unsigned int *) data; memcpy( outputBuffer, inputBuffer, *bytes ); return 0; } |
