From 446af1fd2b76dfe32a3f947b683a4e36122cea37 Mon Sep 17 00:00:00 2001 From: iakarsu Date: Tue, 28 Jan 2020 15:39:57 +0300 Subject: tdf#96505: Get rid of cargo cult long integer literals Change-Id: I3917e5152036f77eb419fe658937562f5928ceff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87614 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- include/basegfx/range/basicrange.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/basegfx/range/basicrange.hxx b/include/basegfx/range/basicrange.hxx index 17f31ea42f19..046dfafdd03f 100644 --- a/include/basegfx/range/basicrange.hxx +++ b/include/basegfx/range/basicrange.hxx @@ -297,7 +297,7 @@ namespace basegfx { static sal_Int32 minVal() { return SAL_MIN_INT32; }; static sal_Int32 maxVal() { return SAL_MAX_INT32; }; - static sal_Int32 neutral() { return 0L; }; + static sal_Int32 neutral() { return 0; }; typedef sal_Int64 DifferenceType; }; -- cgit