diff options
| author | Richard M. Stallman | 1993-08-13 05:38:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-08-13 05:38:33 +0000 |
| commit | 6930925e83acd6424d72806f1ca200a9597a00cb (patch) | |
| tree | 06dec9a160fe06ea4d05738c8d1692a81eeb63a7 /src | |
| parent | f862241d81f08a5b5fd2f9b9139526b66d43466d (diff) | |
| download | emacs-6930925e83acd6424d72806f1ca200a9597a00cb.tar.gz emacs-6930925e83acd6424d72806f1ca200a9597a00cb.zip | |
(get_data_region): Add cast to avoid warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexnext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexnext.c b/src/unexnext.c index d03808bad4f..c402fcacc54 100644 --- a/src/unexnext.c +++ b/src/unexnext.c | |||
| @@ -175,7 +175,7 @@ get_data_region( | |||
| 175 | kern_return_t ret; | 175 | kern_return_t ret; |
| 176 | struct section *sect; | 176 | struct section *sect; |
| 177 | 177 | ||
| 178 | sect = getsectbyname(SEG_DATA, SECT_DATA); | 178 | sect = (struct section *) getsectbyname(SEG_DATA, SECT_DATA); |
| 179 | region.address = 0; | 179 | region.address = 0; |
| 180 | *address = 0; | 180 | *address = 0; |
| 181 | for (;;) { | 181 | for (;;) { |