mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 06:05:47 +01:00
Remove trailing white space
Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
This commit is contained in:
parent
281956d5c3
commit
197e9edae5
@ -61,7 +61,7 @@ static uint64_t mul64( uint32_t a, uint32_t b )
|
||||
{
|
||||
/* a = al + 2**16 ah, b = bl + 2**16 bh */
|
||||
const uint16_t al = (uint16_t) a;
|
||||
const uint16_t bl = (uint16_t) b;
|
||||
const uint16_t bl = (uint16_t) b;
|
||||
const uint16_t ah = a >> 16;
|
||||
const uint16_t bh = b >> 16;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user