1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

Fix warning in bencode

This commit is contained in:
Michael 2019-02-18 21:55:27 +00:00
parent 06af3ca95b
commit de13ab3adc
No known key found for this signature in database
GPG key ID: 2D51757B47E2434C

View file

@ -1,6 +1,7 @@
#include <util/bencode.h> #include <util/bencode.h>
#include <util/logger.hpp> #include <util/logger.hpp>
#include <cstdlib> #include <cstdlib>
#include <inttypes.h>
bool bool
bencode_read_integer(struct llarp_buffer_t* buffer, uint64_t* result) bencode_read_integer(struct llarp_buffer_t* buffer, uint64_t* result)