Version 4.3.1

This commit is contained in:
Gary Scavone
2009-03-24 23:02:17 -04:00
committed by Stephen Sinclair
parent 27d9b79dc7
commit d199342e86
105 changed files with 3455 additions and 12232 deletions

View File

@@ -20,7 +20,7 @@ void usage(void) {
std::cout << " track = the track to play (0 = 1st track),\n";
std::cout << " and an optional port integer identifier can be specified\n";
std::cout << " (default = 0) or a value of -1 to use a virtual MIDI output port.\n\n";
exit(0);
exit( 0 );
}
int main( int argc, char *argv[] )
@@ -67,7 +67,7 @@ int main( int argc, char *argv[] )
// Install an interrupt handler function. Type "ctrl-c" to quit the
// program.
(void) signal(SIGINT, finish);
(void) signal( SIGINT, finish );
try {
MidiFileIn midiFile( argv[1] );