Commit b63033bf authored by Andrea Orlat's avatar Andrea Orlat
Browse files

fixed a bug generated by the last modification of FitsZilla

parent 501daf06
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ bool CFitsTools::primaryHeaderComment(
		const IRA::CString& comment,
		IRA::CString& errorMessage)
{
	if (fits) {
	if (!fits) {
		errorMessage="fits file is not created";
		return false;
	}
@@ -22,7 +22,7 @@ bool CFitsTools::primaryHeaderComment(
bool CFitsTools::primaryHeaderHistory(CCfits::FITS *const fits,const IRA::CString& history,
	IRA::CString& errorMessage)
{
	if (fits) {
	if (!fits) {
		errorMessage="fits file is not created";
		return false;
	}