diff options
| author | garyscavone <garyscavone@users.noreply.github.com> | 2016-02-16 20:38:29 -0500 |
|---|---|---|
| committer | garyscavone <garyscavone@users.noreply.github.com> | 2016-02-16 20:38:29 -0500 |
| commit | ce98d4a31cf62bc01bdd7b12ec7a7044685ac06a (patch) | |
| tree | 330f4640f682f317e1aec5f2a77d63fd17502001 /tests/duplex.cpp | |
| parent | b4fe17fb7eb399d012c5d8994cca9f77632819cb (diff) | |
| parent | 77cfec0f03ce712410620d93fd698561901bdaf7 (diff) | |
Merge pull request #48 from radarsat1/duplex-64-compat
Revert "duplex test: 64 bit compatibility"
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; } |
