aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-10-25 20:45:27 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-10-25 20:45:27 -0500
commitb408416e7e01cd9ce422f033c2a04c8f6fddbd08 (patch)
treefbc7dcb43fb16488271c64712ac92b13d8fccbc9
parentMerge pull request #6032 (diff)
parentrpc: fix PRIx64 build error on some systems (diff)
downloadmonero-b408416e7e01cd9ce422f033c2a04c8f6fddbd08.tar.xz
Merge pull request #6034
f7f7513 rpc: fix PRIx64 build error on some systems (moneromooo-monero)
-rw-r--r--src/rpc/rpc_payment_signature.cpp2
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"