Fix typo u_int32_t to uint32_t

This commit is contained in:
2024-05-03 14:50:59 +02:00
parent 24a1b0ecc4
commit 554bb9a7f6
+2 -2
View File
@@ -1286,7 +1286,7 @@ public:
void addFITSKeyword(uint32_t image, const FITSKeyword &keyword);
void updateFITSKeyword(uint32_t image, const FITSKeyword &keyword, bool add);
void removeFITSKeyword(u_int32_t image, const String &name);
void removeFITSKeyword(uint32_t image, const String &name);
private:
void readXISFHeader();
void parseAttachmentPos(pugi::xml_node &root);
@@ -1448,7 +1448,7 @@ void XISFModifyPrivate::updateFITSKeyword(uint32_t image, const FITSKeyword &key
}
}
void XISFModifyPrivate::removeFITSKeyword(u_int32_t image, const String &name)
void XISFModifyPrivate::removeFITSKeyword(uint32_t image, const String &name)
{
if(!_root)
throw Error("No input file opened");