all: Remove spaces between nested paren and inside function arg paren.

Using new options enabled in the uncrustify configuration.
This commit is contained in:
Damien George
2020-03-20 21:47:07 +11:00
parent f62cc41fac
commit feb2577585
11 changed files with 38 additions and 38 deletions

View File

@@ -33,7 +33,7 @@
static inline uintptr_t get_sp(void) {
uintptr_t result;
__asm__ ("mov %0, sp\n" : "=r" (result) );
__asm__ ("mov %0, sp\n" : "=r" (result));
return result;
}