diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-26 00:05:21 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-26 00:05:21 +0000 |
commit | f7f7513ec3f2545a8e5e2d83a7590a290e4199ea (patch) | |
tree | 35e105aba15373c644aeecd523e6cd8c682325cb /src/rpc | |
parent | Merge pull request #6024 (diff) | |
download | monero-f7f7513ec3f2545a8e5e2d83a7590a290e4199ea.tar.xz |
rpc: fix PRIx64 build error on some systems
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/rpc_payment_signature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rpc_payment_signature.cpp b/src/rpc/rpc_payment_signature.cpp index 159bb5730..2e8b54b4f 100644 --- a/src/rpc/rpc_payment_signature.cpp +++ b/src/rpc/rpc_payment_signature.cpp @@ -26,7 +26,7 @@ // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#include <inttypes.h> +#include <cinttypes> #include <stdlib.h> #include <chrono> #include "include_base_utils.h" |