From 6930925e83acd6424d72806f1ca200a9597a00cb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 13 Aug 1993 05:38:33 +0000 Subject: [PATCH] (get_data_region): Add cast to avoid warning. --- src/unexnext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( kern_return_t ret; struct section *sect; - sect = getsectbyname(SEG_DATA, SECT_DATA); + sect = (struct section *) getsectbyname(SEG_DATA, SECT_DATA); region.address = 0; *address = 0; for (;;) { -- 2.39.5