From da75453a22ebf56362f26c199b173ec5d2409ac8 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 5 Dec 2006 22:44:40 +0000 Subject: [PATCH] fixed no address returned from devAllocAddress --- src/libCom/osi/devLib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libCom/osi/devLib.c b/src/libCom/osi/devLib.c index a0d88945f..e5cd1d000 100644 --- a/src/libCom/osi/devLib.c +++ b/src/libCom/osi/devLib.c @@ -549,7 +549,7 @@ long devAllocAddress( epicsAddressType addrType, size_t size, unsigned alignment, /* n ls bits zero in base addr*/ - volatile void **pLocalAddress) + volatile void ** pLocalAddress ) { int s; rangeItem *pRange; @@ -596,7 +596,7 @@ long devAllocAddress( } s = devInstallAddr (pRange, pOwnerName, addrType, base, - size, NULL); + size, pLocalAddress); return s; }