mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Fix error strings without quotes
Some of the error strings that should be printed with the error preprocessor directive are missing quotes Signed-off-by: Antonio de Angelis <antonio.deangelis@arm.com>
This commit is contained in:
@ -82,7 +82,7 @@ static inline uint32_t mbedtls_get_unaligned_volatile_uint32(volatile const unsi
|
||||
#elif defined(MBEDTLS_CT_AARCH64_ASM)
|
||||
asm volatile ("ldr %w0, [%1]" : "=r" (r) : MBEDTLS_ASM_AARCH64_PTR_CONSTRAINT(p) :);
|
||||
#else
|
||||
#error No assembly defined for mbedtls_get_unaligned_volatile_uint32
|
||||
#error "No assembly defined for mbedtls_get_unaligned_volatile_uint32"
|
||||
#endif
|
||||
return r;
|
||||
}
|
||||
|
Reference in New Issue
Block a user