Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
Fix compiler warning on armv6
Baptiste Daroussin committed 9 years ago
commit 0bfeb77dd1f09e228f5d2e3b57a79bfce8430808
parent be00b8b
1 file changed +1 -1
modified src/utils.c
@@ -933,7 +933,7 @@ print_jobs_summary(struct pkg_jobs *jobs, const char *msg, ...)
	}

	limbytes = pkg_object_int(pkg_config_get("WARN_SIZE_LIMIT"));
-
	bytes_change = labs(newsize - oldsize);
+
	bytes_change = (size_t)llabs(newsize - oldsize);

	/* Add an extra line before the size output. */
	if (bytes_change > limbytes || dlsize)