wsd/UserMessages.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 4ec7fdb17e4a5477fdee2731431a33fa975bd1c2 Author: Andras Timar <[email protected]> Date: Wed Jan 17 16:40:53 2018 +0100 These params are unsigned, Poco takes it seriously ([ERRFMT] was sent instead of number) Change-Id: Ie0bbf5c5f5fb96231baa5425b6a38dcbb614f61e Reviewed-on: https://gerrit.libreoffice.org/48060 Reviewed-by: Andras Timar <[email protected]> Tested-by: Andras Timar <[email protected]> diff --git a/wsd/UserMessages.hpp b/wsd/UserMessages.hpp index f792cb0d..9dad0d36 100644 --- a/wsd/UserMessages.hpp +++ b/wsd/UserMessages.hpp @@ -13,7 +13,7 @@ #define INCLUDED_USERMESSAGES_HPP constexpr auto SERVICE_UNAVAILABLE_INTERNAL_ERROR = "error: cmd=socket kind=serviceunavailable"; -constexpr auto PAYLOAD_UNAVAILABLE_LIMIT_REACHED = "error: cmd=socket kind=limitreached params=%d,%d"; +constexpr auto PAYLOAD_UNAVAILABLE_LIMIT_REACHED = "error: cmd=socket kind=limitreached params=%u,%u"; #endif _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
