Skip to content

Commit

Permalink
Skip value entries for LO_TRUE/LO_FALSE/LO_NIL/LO_INFINITUM created b…
Browse files Browse the repository at this point in the history
…y oscdump. Thanks to @7890 for the patch! Related to radarsat1#111
  • Loading branch information
malloch committed Nov 8, 2024
1 parent 3998d9b commit a723664
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/tools/oscsendfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,15 +221,19 @@ lo_message create_message(char **argv)
}
case LO_TRUE:
lo_message_add_true(message);
++argi;
break;
case LO_FALSE:
lo_message_add_false(message);
++argi;
break;
case LO_NIL:
lo_message_add_nil(message);
++argi;
break;
case LO_INFINITUM:
lo_message_add_infinitum(message);
++argi;
break;
default:
fprintf(stderr, "Type '%c' is not supported or invalid.\n",
Expand Down

0 comments on commit a723664

Please sign in to comment.