Skip to content

Commit

Permalink
spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jpffitch committed Dec 13, 2017
1 parent 501f674 commit 2f4503a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Opcodes/socksend.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ typedef struct {
static int osc_send2_init(CSOUND *csound, OSCSEND2 *p)
{
unsigned int bsize;

if (UNLIKELY(p->INOCOUNT > 4 && p->INOCOUNT < (unsigned int) p->type->size + 4))
return csound->InitError(csound,
Str("insufficient number of arguments for "
Expand Down Expand Up @@ -446,7 +446,7 @@ static int osc_send2_init(CSOUND *csound, OSCSEND2 *p)
/* allocate space for the types buffer */
csound->AuxAlloc(csound, strlen(p->type->data), &p->types);
memcpy(p->types.auxp, p->type->data, strlen(p->type->data));

// todo: parse type to allocate memory
int i, iarg = 0;
STRINGDAT *s;
Expand Down Expand Up @@ -530,7 +530,7 @@ static int osc_send2_init(CSOUND *csound, OSCSEND2 *p)
}

}

p->last = FL(0.0);
return OK;
}
Expand Down
2 changes: 1 addition & 1 deletion Top/argdecode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,7 @@ static int decode_long(CSOUND *csound, char *s, int argc, char **argv)
csound->aftouch = 0;
return 1;
}

csoundErrorMsg(csound, Str("unknown long option: '--%s'"), s);
return 0;
}
Expand Down

0 comments on commit 2f4503a

Please sign in to comment.