Add the empty lines at the end of the sources so clang won't whine and compile. :)
This commit is contained in:
parent
97e5dae4db
commit
d9cc37896f
@ -108,4 +108,4 @@ int audio_write(audio_t *aud, const unsigned char *input, int input_len) {
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -22,4 +22,4 @@ int audio_destroy(audio_t *aud);
|
||||
int audio_read(audio_t *aud, unsigned char *output, int output_len);
|
||||
int audio_write(audio_t *aud, const unsigned char *input, int input_len);
|
||||
|
||||
#endif /* _AUDIO_H_ */
|
||||
#endif /* _AUDIO_H_ */
|
||||
|
@ -199,4 +199,4 @@ void crypt_session_destroy(crypt_session_t *const s) {
|
||||
sodium_memzero(s->tx, CRYPT_SESS_KEY_LEN);
|
||||
sodium_memzero(s->nonce, CRYPT_NONCE_LEN);
|
||||
crypt_key_destroy(s->remote_key);
|
||||
}
|
||||
}
|
||||
|
@ -57,4 +57,4 @@ unsigned char *crypt_session_encrypt(crypt_session_t *const s, const unsigned ch
|
||||
unsigned char *crypt_session_decrypt(crypt_session_t *const s, const unsigned char *const c, unsigned long long clen, unsigned long long *mlen);
|
||||
void crypt_session_destroy(crypt_session_t *const s);
|
||||
|
||||
#endif /* _CRYPT_H_ */
|
||||
#endif /* _CRYPT_H_ */
|
||||
|
@ -155,4 +155,4 @@ cleanup:
|
||||
net_destroy(&nc);
|
||||
|
||||
return rt;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user