diff options
| author | Karl Heuer | 1997-10-02 03:12:38 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-10-02 03:12:38 +0000 |
| commit | 4461bfd37f66d1b20bd46c6d494b942ada2cb1c9 (patch) | |
| tree | b17578a9c38a083f9df5c1f8ca0ef22c1c11b4ef /src | |
| parent | 265375e7fff416f3a7c0b1d43137b7f6bcebab67 (diff) | |
| download | emacs-4461bfd37f66d1b20bd46c6d494b942ada2cb1c9.tar.gz emacs-4461bfd37f66d1b20bd46c6d494b942ada2cb1c9.zip | |
(round_up): Make arguments and return type unsigned.
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; | |||
| 544 | 544 | ||
| 545 | /* Round X up to a multiple of Y. */ | 545 | /* Round X up to a multiple of Y. */ |
| 546 | 546 | ||
| 547 | int | 547 | ElfW(Addr) |
| 548 | round_up (x, y) | 548 | round_up (x, y) |
| 549 | int x, y; | 549 | ElfW(Addr) x, y; |
| 550 | { | 550 | { |
| 551 | int rem = x % y; | 551 | int rem = x % y; |
| 552 | if (rem == 0) | 552 | if (rem == 0) |