mirror of
https://github.com/matrix-construct/construct
synced 2024-11-20 17:01:55 +01:00
class.c fixed possibly
This commit is contained in:
parent
bdbe991f53
commit
4964011f8a
1 changed files with 23 additions and 23 deletions
|
@ -49,7 +49,7 @@ make_class(void)
|
||||||
{
|
{
|
||||||
struct Class *tmp;
|
struct Class *tmp;
|
||||||
|
|
||||||
tmp = (struct Class *) rb_malloc(sizeof(struct Class));
|
tmp = rb_malloc(sizeof(struct Class));
|
||||||
|
|
||||||
ConFreq(tmp) = DEFAULT_CONNECTFREQUENCY;
|
ConFreq(tmp) = DEFAULT_CONNECTFREQUENCY;
|
||||||
PingFreq(tmp) = DEFAULT_PINGFREQUENCY;
|
PingFreq(tmp) = DEFAULT_PINGFREQUENCY;
|
||||||
|
|
Loading…
Reference in a new issue