From 2107904fc62c6233975146bb2316201f4126fd3e Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Wed, 17 Apr 2019 21:50:40 +0900 Subject: [PATCH] Fixed wrong format data type warning --- src/AutoConnectAux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoConnectAux.cpp b/src/AutoConnectAux.cpp index b00b997..9fb16a0 100644 --- a/src/AutoConnectAux.cpp +++ b/src/AutoConnectAux.cpp @@ -278,7 +278,7 @@ void AutoConnectAux::upload(const String& requestUri, const HTTPUpload& upload) if (upload.status == UPLOAD_FILE_END || upload.status == UPLOAD_FILE_ABORTED) { if (_currentUpload) _currentUpload->detach(); - AC_DBG("%ld bytes uploaded\n", upload.totalSize); + AC_DBG("%d bytes uploaded\n", upload.totalSize); } } }