From d103ed288745077992b58db3b7d7cb3baabbe5ab Mon Sep 17 00:00:00 2001 From: "Timur A. Fatkhullin" Date: Mon, 30 Dec 2024 17:16:38 +0300 Subject: [PATCH] fixes --- raptor_eagle_acqproc.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/raptor_eagle_acqproc.cpp b/raptor_eagle_acqproc.cpp index ca1934d..ce94f80 100644 --- a/raptor_eagle_acqproc.cpp +++ b/raptor_eagle_acqproc.cpp @@ -195,12 +195,11 @@ void RaptorEagleCCD::AcquisitionProcess::start(const std::shared_ptrimageBufferPtr, &status); } } else { - fits_write_img(fitsFilePtr, TUSHORT, 1, npix, (void*)_imageBuffer.get(), &status); + fits_write_img(fitsFilePtr, TUSHORT, 1, npix, _acqParams->imageBufferPtr, &status); }