From fd2428a794d4f44ac9ac899efddfc7d51a332ddf Mon Sep 17 00:00:00 2001 From: lecoanet Date: Sat, 12 Feb 2005 14:30:20 +0000 Subject: Fixed the __unused macro to avoid a clash with dummy variables used in 64 bits headers --- generic/Tabular.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'generic/Tabular.c') diff --git a/generic/Tabular.c b/generic/Tabular.c index 79fe072..03f9299 100644 --- a/generic/Tabular.c +++ b/generic/Tabular.c @@ -233,7 +233,7 @@ Configure(ZnItem item, */ static int Query(ZnItem item, - int argc __unused, + int argc __znunused, Tcl_Obj *CONST argv[]) { if (ZnQueryAttribute(item->wi->interp, item, tabular_attrs, argv[0]) == TCL_ERROR) { @@ -253,7 +253,7 @@ Query(ZnItem item, */ static void ComputeCoordinates(ZnItem item, - ZnBool force __unused) + ZnBool force __znunused) { TabularItem tab = (TabularItem) item; ZnWInfo *wi = item->wi; @@ -411,8 +411,8 @@ Pick(ZnItem item, ********************************************************************************** */ static void -PostScript(ZnItem item __unused, - ZnBool prepass __unused) +PostScript(ZnItem item __znunused, + ZnBool prepass __znunused) { } @@ -499,11 +499,11 @@ GetClipVertices(ZnItem item, */ static int Coords(ZnItem item, - int contour __unused, - int index __unused, + int contour __znunused, + int index __znunused, int cmd, ZnPoint **pts, - char **controls __unused, + char **controls __znunused, unsigned int *num_pts) { TabularItem tabular = (TabularItem) item; -- cgit v1.1