Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2013-01-25 23:56:37 +0400
committerUnderground78 <underground78@users.sourceforge.net>2013-01-26 00:16:10 +0400
commitc1fac3a506861e0879b5b30c1fa4c362f46a77c2 (patch)
treeb4d60734c28e379ed33001bc8a99a852d6b61667 /src/DSUtil/DSUtil.h
parent4709ce868f7d4c21296f4f13cba851744985cb0e (diff)
Cosmetics: Use the GCD function when possible and rename it to use English.
Diffstat (limited to 'src/DSUtil/DSUtil.h')
-rw-r--r--src/DSUtil/DSUtil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DSUtil/DSUtil.h b/src/DSUtil/DSUtil.h
index 8a990959b..48618bf92 100644
--- a/src/DSUtil/DSUtil.h
+++ b/src/DSUtil/DSUtil.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2012 see Authors.txt
+ * (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -282,7 +282,7 @@ static CUnknown* WINAPI CreateInstance(LPUNKNOWN lpunk, HRESULT* phr)
return punk;
}
-inline int LNKO(int a, int b)
+inline int GCD(int a, int b)
{
if (a == 0 || b == 0) {
return 1;