From 79dd35ec65b618ec27d0d1e052fba7e4cba40825 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Tue, 13 Jul 2004 19:22:07 +0000 Subject: Removed the need for memcpy() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4875 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/search.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/plugins/search.c b/apps/plugins/search.c index 611a48e0bc..55f65f2b2a 100644 --- a/apps/plugins/search.c +++ b/apps/plugins/search.c @@ -55,7 +55,7 @@ static void fill_buffer(int pos) int numread; int i; int found = false ; - char crlf[2] = "\n\0"; + const char crlf = '\n'; if (pos>=file_size-BUFFER_SIZE) pos = file_size-BUFFER_SIZE; @@ -82,7 +82,7 @@ static void fill_buffer(int pos) /* write to playlist */ rb->write(fdw, &buffer[line_end], rb->strlen( &buffer[line_end] )); - rb->write(fdw, &crlf,1); + rb->write(fdw, &crlf, 1); found = false ; results++ ; -- cgit v1.2.3