From 36031289d62680c5c80763a613368355d40de94b Mon Sep 17 00:00:00 2001 From: NicJA Date: Thu, 12 Jan 2017 04:40:12 +0000 Subject: [PATCH] delint git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@53205 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- workbench/locale/countries/makecountry/countryprefs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workbench/locale/countries/makecountry/countryprefs.c b/workbench/locale/countries/makecountry/countryprefs.c index fd9d1a13e5..b3d0aeadfe 100644 --- a/workbench/locale/countries/makecountry/countryprefs.c +++ b/workbench/locale/countries/makecountry/countryprefs.c @@ -24,17 +24,17 @@ unsigned long getCountryPrefsSize() unsigned long getCountryPrefsVers(struct IntCountryPrefs *cp) { - return cp->country_Version; + return (unsigned long)cp->country_Version; } unsigned long getCountryPrefsFlag(struct IntCountryPrefs *cp) { - return cp->country_Flag; + return (unsigned long)cp->country_Flag; } unsigned long getCountryNames(struct IntCountryPrefs *cp) { - return cp->country_NativeNames; + return (unsigned long)cp->country_NativeNames; } void convertEndianness(struct CountryPrefs *cp) -- 2.11.4.GIT