diff file.c @ 885:da1d5db0ce5c libavformat

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents deece487318e
children edbe5c3717f9
line wrap: on
line diff
--- a/file.c	Sat Dec 17 17:57:03 2005 +0000
+++ b/file.c	Sat Dec 17 18:14:38 2005 +0000
@@ -70,7 +70,7 @@
 static offset_t file_seek(URLContext *h, offset_t pos, int whence)
 {
     int fd = (size_t)h->priv_data;
-#if defined(CONFIG_WIN32) && !defined(__CYGWIN__) 
+#if defined(CONFIG_WIN32) && !defined(__CYGWIN__)
     return _lseeki64(fd, pos, whence);
 #else
     return lseek(fd, pos, whence);