Remove stray semicolons (#339)

This commit is contained in:
jailbird777 2022-06-10 12:07:25 -05:00 committed by GitHub
parent 2681c7d2e4
commit e73eade529
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ rb_crypt(const char *key, const char *salt)
return rb_sha512_crypt(key, salt);
default:
return NULL;
};
}
}
else
return rb_des_crypt(key, salt);

View file

@ -172,7 +172,7 @@ int
rb_ports_supports_event(void)
{
return 1;
};
}
void
rb_ports_init_event(void)