Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
9d3f1904
Commit
9d3f1904
authored
Jul 22, 2016
by
Jonathan Wilkes
Browse files
change void pointer return type to void in unauthorized
parent
959cdd13
Changes
2
Hide whitespace changes
Inline
Side-by-side
externals/unauthorized/countund/countund.c
View file @
9d3f1904
...
...
@@ -74,7 +74,7 @@ static void *countund_new(t_float flimit)
return
(
x
);
}
static
void
*
countund_limit
(
t_countund
*
x
,
t_float
flimit
)
static
void
countund_limit
(
t_countund
*
x
,
t_float
flimit
)
{
if
(
flimit
<
0
)
{
post
(
"countund~: wrong count limit"
);
...
...
@@ -84,7 +84,7 @@ static void *countund_limit(t_countund* x, t_float flimit)
}
}
static
void
*
countund_bang
(
t_countund
*
x
)
static
void
countund_bang
(
t_countund
*
x
)
{
if
(
x
->
x_up
)
{
...
...
externals/unauthorized/randomblock~/randomblock~.c
View file @
9d3f1904
...
...
@@ -70,7 +70,7 @@ static void *randomblock_new(t_float flimit)
return
(
x
);
}
static
void
*
randomblock_limit
(
t_randomblock
*
x
,
t_float
flimit
)
static
void
randomblock_limit
(
t_randomblock
*
x
,
t_float
flimit
)
{
if
(
flimit
<
0
||
flimit
>
RAND_MAX
)
{
post
(
"randomblock~: wrong random limit"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment