From: Karl Heuer Date: Thu, 2 Oct 1997 03:12:38 +0000 (+0000) Subject: (round_up): Make arguments and return type unsigned. X-Git-Tag: emacs-20.3~3047 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4461bfd37f66d1b20bd46c6d494b942ada2cb1c9;p=emacs.git (round_up): Make arguments and return type unsigned. --- diff --git a/src/unexelf.c b/src/unexelf.c index 0a8b6068d30..799052baf52 100644 --- a/src/unexelf.c +++ b/src/unexelf.c @@ -544,9 +544,9 @@ typedef unsigned char byte; /* Round X up to a multiple of Y. */ -int +ElfW(Addr) round_up (x, y) - int x, y; + ElfW(Addr) x, y; { int rem = x % y; if (rem == 0)