diff core/RTAudioCommandLine.cpp @ 29:cc434ecf4486 bbb_network

- Fixed an issue in the command line options (quotes around constant)
author Giulio Moro <giuliomoro@yahoo.it>
date Mon, 11 May 2015 11:08:00 +0100
parents ad5cd8dd99b3
children 8e3306340971
line wrap: on
line diff
--- a/core/RTAudioCommandLine.cpp	Sun May 10 13:55:43 2015 +0100
+++ b/core/RTAudioCommandLine.cpp	Mon May 11 11:08:00 2015 +0100
@@ -188,7 +188,7 @@
 				std::cerr << "Warning: server name is too long (>" << MAX_SERVERNAME_LENGTH << " characters)."
 						" Using default severName Instead ( " << settings->serverName << " ).\n";
 			break;
-		case 'OPT_PRU_FILE':
+		case OPT_PRU_FILE:
 			if(strlen(optarg)<MAX_PRU_FILENAME_LENGTH)
 				strcpy(settings->pruFilename, optarg);
 			else