diff options
| author | garyscavone <garyscavone@users.noreply.github.com> | 2015-04-06 15:47:04 -0400 |
|---|---|---|
| committer | garyscavone <garyscavone@users.noreply.github.com> | 2015-04-06 15:47:04 -0400 |
| commit | 18be2b035ad4c42c7cb1a9d8aab123e5a29d6a56 (patch) | |
| tree | 0701597c5e54b1f761c643e011e7c07462d931d7 /tests/duplex.cpp | |
| parent | dbc3df943c5f3a5abae764a4dd1177c75ed8cfbf (diff) | |
| parent | f639653f5ecf98d3b093049435df5631d8eb0f44 (diff) | |
Merge pull request #34 from diamond-msc/patch-1
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 06462f2..43d1217 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; - unsigned int *bytes = (unsigned int *) data; + uint32_t *bytes = (uint32_t *) data; memcpy( outputBuffer, inputBuffer, *bytes ); return 0; } |
