projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21580d8
)
suppress warning in gcd()
author
Nicolas Thill
<nico@openwrt.org>
Tue, 4 Sep 2007 13:23:21 +0000
(13:23 +0000)
committer
Nicolas Thill
<nico@openwrt.org>
Tue, 4 Sep 2007 13:23:21 +0000
(13:23 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8609
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
target/linux/ar7-2.6/files/arch/mips/ar7/clock.c
patch
|
blob
|
history
diff --git
a/target/linux/ar7-2.6/files/arch/mips/ar7/clock.c
b/target/linux/ar7-2.6/files/arch/mips/ar7/clock.c
index
c7ae09e
..
6d30e60
100644
(file)
--- a/
target/linux/ar7-2.6/files/arch/mips/ar7/clock.c
+++ b/
target/linux/ar7-2.6/files/arch/mips/ar7/clock.c
@@
-103,12
+103,12
@@
static int gcd(int a, int b)
{
int c;
- if (
a < b) {
+ if (a < b) {
c = a;
a = b;
b = c;
}
- while (
c = (a % b
)) {
+ while (
(c = (a % b)
)) {
a = b;
b = c;
}