From 0ea203767ca184f00cabe16ba839bad15e0c5b1a Mon Sep 17 00:00:00 2001 From: thorpej Date: Mon, 25 Nov 2002 02:16:50 +0000 Subject: [PATCH] Add ULL to 64-bit integer constants. --- sys/dev/pci/isp_pci.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/pci/isp_pci.c b/sys/dev/pci/isp_pci.c index aa08c6db4be4..c598eb25247b 100644 --- a/sys/dev/pci/isp_pci.c +++ b/sys/dev/pci/isp_pci.c @@ -1,4 +1,4 @@ -/* $NetBSD: isp_pci.c,v 1.86 2002/10/18 23:26:15 mjacob Exp $ */ +/* $NetBSD: isp_pci.c,v 1.87 2002/11/25 02:16:50 thorpej Exp $ */ /* * This driver, which is contained in NetBSD in the files: * @@ -57,7 +57,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: isp_pci.c,v 1.86 2002/10/18 23:26:15 mjacob Exp $"); +__KERNEL_RCSID(0, "$NetBSD: isp_pci.c,v 1.87 2002/11/25 02:16:50 thorpej Exp $"); #include #include @@ -642,8 +642,8 @@ isp_pci_attach(struct device *parent, struct device *self, void *aux) printf("%s: interrupting at %s\n", isp->isp_name, intrstr); if (IS_FC(isp)) { - DEFAULT_NODEWWN(isp) = 0x400000007F000002; - DEFAULT_PORTWWN(isp) = 0x400000007F000002; + DEFAULT_NODEWWN(isp) = 0x400000007F000002ULL; + DEFAULT_PORTWWN(isp) = 0x400000007F000002ULL; } isp->isp_confopts = self->dv_cfdata->cf_flags;