tabs->spaces

This commit is contained in:
Nils O. Selåsdal
2013-11-22 20:06:05 +01:00
parent 3e05476694
commit 9090de0663
31 changed files with 1214 additions and 1214 deletions
+6 -6
View File
@@ -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;
}