]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/utils/bezier.cpp
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / skins2 / utils / bezier.cpp
index abd5df75f4bef7c2b2341f4fa62172de2d909bea..e15fa20d586edc5b2949135510063ba6f55c08db 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
- *          Olivier Teulière <ipkiss@via.ecp.fr>
+ *          Olivier Teulière <ipkiss@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #include <vlc/vlc.h>
 #   ifdef HAVE_LRINT
 #       define lrintf( x ) (int)rint( x )
 #   elif defined WIN32
-           __inline long int lrintf( float x )
-           {
+        __inline long int lrintf( float x )
+        {
             int i;
             _asm fld x __asm fistp i
-                   return i;
-       }
+            return i;
+        }
 #   endif
 #endif