tabs->spaces
This commit is contained in:
+6
-6
@@ -3,11 +3,11 @@
|
||||
uint32_t
|
||||
uc_gcd_32(uint32_t a, uint32_t b)
|
||||
{
|
||||
while (b != 0) {
|
||||
uint32_t t = b;
|
||||
b = a%b;
|
||||
a = t;
|
||||
}
|
||||
while (b != 0) {
|
||||
uint32_t t = b;
|
||||
b = a%b;
|
||||
a = t;
|
||||
}
|
||||
|
||||
return a;
|
||||
return a;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user