Switch to use const

This commit is contained in:
Nicolás Ortega Froysa 2017-09-23 11:29:48 +02:00
parent a789ff4e0c
commit d5a33ccd79
No known key found for this signature in database
GPG Key ID: FEC70E3BAE2E69BF

View File

@ -29,10 +29,9 @@
dht::DhtRunner node;
void NeoComm_init(unsigned short port) {
if(port == 0)
port = DEFAULT_PORT;
node.run(port, dht::crypto::generateIdentity(), true);
void NeoComm_init(const unsigned short port) {
node.run((port == 0 ? DEFAULT_PORT : port),
dht::crypto::generateIdentity(), true);
}
void NeoComm_deinit() {