White space fixes.
authorlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 11 Feb 2011 10:25:34 +0000 (10:25 +0000)
committerlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 11 Feb 2011 10:25:34 +0000 (10:25 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4695 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/io/kfile.c
bertos/io/kfile.h

index ca7e1fc37d43c464348c60ee40f34a34f473becb..52762bd7dfd59ea8e82ba08162b88e93c392b56f 100644 (file)
@@ -177,15 +177,15 @@ kfile_off_t kfile_copy(KFile *src, KFile *dst, kfile_off_t size)
                size_t len = MIN(sizeof(buf), (size_t)size);
                if (kfile_read(src, buf, len) != len)
                        break;
-                       
+
                size_t wr_len = kfile_write(dst, buf, len);
                cp_len += wr_len;
                size -= len;
-               
+
                if (wr_len != len)
                        break;
        }
-               
+
        return cp_len;
 }
 
index 56f7d57aa3e7e3ea895625e58be98750e10b71a8..9a750feb29a2dfe6135f8c1a4f13647de0b4db9c 100644 (file)
@@ -247,7 +247,7 @@ int kfile_gets_echo(struct KFile *fd, char *buf, int size, bool echo);
 
 /**
  * Copy \a size bytes from file \a src to \a dst.
- * 
+ *
  * \param src Source KFile.
  * \param dst Destionation KFile.
  * \param size number of bytes to copy.