From 77398df4a178dea4f1d20a1ac50d4241325b6251 Mon Sep 17 00:00:00 2001 From: lottaviano Date: Fri, 11 Feb 2011 10:25:34 +0000 Subject: [PATCH] White space fixes. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4695 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/io/kfile.c | 6 +++--- bertos/io/kfile.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bertos/io/kfile.c b/bertos/io/kfile.c index ca7e1fc3..52762bd7 100644 --- a/bertos/io/kfile.c +++ b/bertos/io/kfile.c @@ -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; } diff --git a/bertos/io/kfile.h b/bertos/io/kfile.h index 56f7d57a..9a750feb 100644 --- a/bertos/io/kfile.h +++ b/bertos/io/kfile.h @@ -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. -- 2.25.1