aboutsummaryrefslogtreecommitdiff
path: root/src/arch/arm/libgcc/udivmoddi4.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/libgcc/udivmoddi4.c')
-rw-r--r--src/arch/arm/libgcc/udivmoddi4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/libgcc/udivmoddi4.c b/src/arch/arm/libgcc/udivmoddi4.c
index a97f4ad34c..6073848fb2 100644
--- a/src/arch/arm/libgcc/udivmoddi4.c
+++ b/src/arch/arm/libgcc/udivmoddi4.c
@@ -17,7 +17,7 @@ uint64_t __udivmoddi4(uint64_t num, uint64_t den, uint64_t *rem_p)
{
uint64_t quot = 0, qbit = 1;
if (den == 0) {
- return 1 / ((unsigned)den); /* Intentional divide by zero, without
+ return 1 / ((unsigned int)den); /* Intentional divide by zero, without
triggering a compiler warning which
would abort the build */
}