From a35e72d16625191585546d902df6b6244d14f7e5 Mon Sep 17 00:00:00 2001 From: "Timur A. Fatkhullin" Date: Wed, 9 Jul 2025 23:39:01 +0300 Subject: [PATCH] ... --- cxx/mcc_mount_astro_erfa.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cxx/mcc_mount_astro_erfa.h b/cxx/mcc_mount_astro_erfa.h index cda7082..be9a28f 100644 --- a/cxx/mcc_mount_astro_erfa.h +++ b/cxx/mcc_mount_astro_erfa.h @@ -158,7 +158,7 @@ public: } - engine_err_t terrestialTime(juldate_t juldate, juldate_t& tt) + engine_err_t terrestrialTime(juldate_t juldate, juldate_t& tt) { std::lock_guard lock{_stateMutex}; @@ -213,7 +213,7 @@ public: // gst = eraGst06a(juldate.MJD0, ut1, juldate.MJD0, tt); juldate_t tt; - auto err = terrestialTime(juldate, tt); + auto err = terrestrialTime(juldate, tt); if (err != ERROR_OK) { return err; } @@ -231,7 +231,7 @@ public: { juldate_t tt; - auto err = terrestialTime(juldate, tt); + auto err = terrestrialTime(juldate, tt); if (err != ERROR_OK) { return err; }