shithub: orca

Download patch

ref: 1f137b385181cb6c506055f533c8bee6691ee8a4
parent: e093799b0775385ed16a59e99af3b338d7336478
author: cancel <cancel@cancel.fm>
date: Sun Dec 9 17:11:55 EST 2018

Cleanup naming

--- a/tui_main.c
+++ b/tui_main.c
@@ -977,7 +977,7 @@
       {NULL, 0, NULL, 0}};
   char* input_file = NULL;
   int margin_thickness = 2;
-  char const* osc_ip_send_addr = NULL;
+  char const* osc_hostname = NULL;
   char const* osc_port = NULL;
   Midi_mode midi_mode;
   midi_mode_init(&midi_mode);
@@ -1000,7 +1000,7 @@
       }
     } break;
     case Argopt_osc_server: {
-      osc_ip_send_addr = optarg;
+      osc_hostname = optarg;
     } break;
     case Argopt_osc_port: {
       osc_port = optarg;
@@ -1030,7 +1030,7 @@
   App_state app_state;
   app_init(&app_state);
 
-  if (osc_ip_send_addr != NULL && osc_port == NULL) {
+  if (osc_hostname != NULL && osc_port == NULL) {
     fprintf(stderr,
             "An OSC server address was specified, but no OSC port was "
             "specified.\n"
@@ -1039,7 +1039,7 @@
     exit(1);
   }
   if (osc_port != NULL) {
-    if (!app_set_osc_udp(&app_state, osc_ip_send_addr, osc_port)) {
+    if (!app_set_osc_udp(&app_state, osc_hostname, osc_port)) {
       fprintf(stderr, "Failed to set up OSC networking\n");
       app_deinit(&app_state);
       exit(1);