From: ellson Date: Tue, 13 Oct 2009 14:22:50 +0000 (+0000) Subject: apply fix suggested in b1787 for compilation problem on AIX 5.3 X-Git-Tag: LAST_LIBGRAPH~32^2~1660 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b48f1862e43f50341e9b21d426eac957ddaea4c;p=graphviz apply fix suggested in b1787 for compilation problem on AIX 5.3 --- diff --git a/lib/gvc/gvdevice.c b/lib/gvc/gvdevice.c index dfeefa052..dd5800e8d 100644 --- a/lib/gvc/gvdevice.c +++ b/lib/gvc/gvdevice.c @@ -159,9 +159,9 @@ void gvdevice_initialize(GVJ_t * job) #ifdef HAVE_LIBZ z_stream *z = &z_strm; - z->zalloc = (alloc_func)0; - z->zfree = (free_func)0; - z->opaque = (voidpf)0; + z->zalloc = 0; + z->zfree = 0; + z->opaque = 0; z->next_in = NULL; z->next_out = NULL; z->avail_in = 0;