[svn-r6557] Purpose:

Bug Fix

Description:
    Was using the wrong pointer into a structure...

Solution:
    Used the correct pointer to get the file_id...

Platforms tested:
    Modi4

Misc. update:
This commit is contained in:
Bill Wendling 2003-04-01 17:02:55 -05:00
parent 243775d9cd
commit 26cc88d402

View File

@ -1485,7 +1485,7 @@ H5FP_sap_handle_alloc_request(H5FP_request_t *req)
FUNC_ENTER_NOINIT(H5FP_sap_handle_alloc_request);
sap_alloc.req_id = req->req_id;
sap_alloc.file_id = info->file_id;
sap_alloc.file_id = req->file_id;
sap_alloc.status = H5FP_STATUS_OK;
sap_alloc.mem_type = req->mem_type;