Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-09-07 18:06:17 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-09-07 18:06:17 +0300
commit0f08f598153ea64de151cdcd1b250ab26ede97d2 (patch)
tree7a61433047f91977d68840157855fc66c4580cae /src/RepRapFirmware.h
parent0b669a089f7ddccd9104ed9f489b2501452e31ef (diff)
Fix for eCv
Diffstat (limited to 'src/RepRapFirmware.h')
-rw-r--r--src/RepRapFirmware.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RepRapFirmware.h b/src/RepRapFirmware.h
index 66441def..da7bc03d 100644
--- a/src/RepRapFirmware.h
+++ b/src/RepRapFirmware.h
@@ -147,7 +147,7 @@ namespace CanInterface
#define THROW_INTERNAL_ERROR throw GCodeException(-1, -1, "internal error at file " __FILE__ "(%d)", (int32_t)__LINE__)
// Assertion mechanism
-extern "C" [[noreturn]] void vAssertCalled(uint32_t line, const char *file) noexcept __attribute((naked));
+extern "C" [[noreturn]] void vAssertCalled(uint32_t line, const char *file) noexcept __attribute__((naked));
#define RRF_ASSERT(_expr) do { if (!(_expr)) { vAssertCalled(__LINE__, __FILE__); } } while (false)
#if !SUPPORT_CAN_EXPANSION