summaryrefslogtreecommitdiff
path: root/tests/playraw.cpp
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2007-11-22 16:12:08 +0000
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:29:21 +0200
commit552c2436cf26a4d4c37906bdf855109cf8dd4373 (patch)
treef6b34942e5d09b0326d733df5d7e15c5856628b0 /tests/playraw.cpp
parentaf95dc23a7b4c12d74f050ba6a725f6fd9fa17f6 (diff)
Syntax changes to test programs and restoration of Windows VC++ project files (gps).
Diffstat (limited to 'tests/playraw.cpp')
-rw-r--r--tests/playraw.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/playraw.cpp b/tests/playraw.cpp
index 3b70cdb..a9e4db1 100644
--- a/tests/playraw.cpp
+++ b/tests/playraw.cpp
@@ -58,7 +58,7 @@ void usage( void ) {
std::cout << " file = the raw file to play,\n";
std::cout << " device = optional device to use (default = 0),\n";
std::cout << " and channelOffset = an optional channel offset on the device (default = 0).\n\n";
- exit(0);
+ exit( 0 );
}
struct OutputData {
@@ -106,13 +106,13 @@ int main( int argc, char *argv[] )
if ( argc > 4 )
device = (unsigned int) atoi( argv[4] );
if ( argc > 5 )
- offset = (unsigned int) atoi(argv[5]);
+ offset = (unsigned int) atoi( argv[5] );
OutputData data;
data.fd = fopen( file, "rb" );
if ( !data.fd ) {
std::cout << "Unable to find or open file!\n";
- exit( 0 );
+ exit( 1 );
}
// Set our stream parameters for output only.