From 4b25405336cbc1eb11360b980ebef985f591d4c1 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Sun, 27 Feb 2005 19:37:51 +0000 Subject: [PATCH] Fix build on sparc64. --- usr.bin/gencat/gencat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/gencat/gencat.c b/usr.bin/gencat/gencat.c index 119c5e3bb60..306f48d3d7b 100644 --- a/usr.bin/gencat/gencat.c +++ b/usr.bin/gencat/gencat.c @@ -623,9 +623,9 @@ MCWriteCat(int fd) nmsgs * sizeof(struct _nls_msg_hdr)); /* compute offsets for set & msg header tables and string pool */ - set_hdr = (struct _nls_set_hdr *) ((char *) msgcat + + set_hdr = (struct _nls_set_hdr *)(void *)((char *)msgcat + sizeof(struct _nls_cat_hdr)); - msg_hdr = (struct _nls_msg_hdr *) ((char *) msgcat + + msg_hdr = (struct _nls_msg_hdr *)(void *)((char *)msgcat + sizeof(struct _nls_cat_hdr) + nsets * sizeof(struct _nls_set_hdr)); strings = (char *) msgcat +