Remove stray semicolons (#339)
This commit is contained in:
parent
2681c7d2e4
commit
e73eade529
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ rb_crypt(const char *key, const char *salt)
|
||||||
return rb_sha512_crypt(key, salt);
|
return rb_sha512_crypt(key, salt);
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return rb_des_crypt(key, salt);
|
return rb_des_crypt(key, salt);
|
||||||
|
|
|
@ -172,7 +172,7 @@ int
|
||||||
rb_ports_supports_event(void)
|
rb_ports_supports_event(void)
|
||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
};
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
rb_ports_init_event(void)
|
rb_ports_init_event(void)
|
||||||
|
|
Loading…
Reference in a new issue