53e4a5ba09
- remove all compiler warnings on alpha - add ${PKG_SYSCONFDIR}/pcb/local.inc where admins can list site specific libraries to be included instead of modifying one of the regularly installed/deinstalled files. This way a local config is preserved when the pkg is upgraded. Also a local config can be applied without modifying one of the files which is checksummed during the install.
22 lines
527 B
Text
22 lines
527 B
Text
$NetBSD: patch-an,v 1.1 2002/05/31 19:56:21 dmcmahill Exp $
|
|
|
|
--- src/report.c.orig Wed May 13 06:29:57 1998
|
|
+++ src/report.c
|
|
@@ -47,7 +47,7 @@
|
|
#include <X11/Xaw/Toggle.h>
|
|
|
|
|
|
-static int ReturnCode; /* filled in by dialog */
|
|
+static long int ReturnCode; /* filled in by dialog */
|
|
|
|
/*
|
|
* some local prototypes
|
|
@@ -61,7 +61,7 @@
|
|
*/
|
|
static void CB_OK(Widget W, XtPointer ClientData, XtPointer CallData)
|
|
{
|
|
- ReturnCode = (int) ClientData;
|
|
+ ReturnCode = (long int) ClientData;
|
|
}
|
|
|
|
void ReportDrills(void)
|