Skip to content

Commit

Permalink
fixing liblo calls
Browse files Browse the repository at this point in the history
  • Loading branch information
vlazzarini committed Jun 3, 2023
1 parent e9afd50 commit 596667d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Opcodes/OSC.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ static int32_t OSCcounter(CSOUND *csound, OSCcount *p)
}

static int32_t OSC_handler(const char *path, const char *types,
lo_arg **argv, int32_t argc, void *data, void *p)
lo_arg **argv, int32_t argc, lo_message data, void *p)
{
IGN(argc); IGN(data);
OSC_PORT *pp = (OSC_PORT*) p;
Expand Down Expand Up @@ -548,7 +548,7 @@ static int32_t OSC_handler(const char *path, const char *types,
case 'b':
{
int32_t len =
lo_blobsize((lo_blob*)argv[i]);
lo_blobsize((lo_blob)argv[i]);
m->args[i].blob =
csound->Malloc(csound,len);
memcpy(m->args[i].blob, argv[i], len);
Expand Down

0 comments on commit 596667d

Please sign in to comment.