From 292cca5f0e9d62d91cebc3069fdfaa78fb83e458 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sat, 11 Jan 2014 22:45:30 +0100 Subject: [PATCH] Update kernel/copy.cpp to current coding conventions. --- kernel/copy.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel/copy.cpp b/kernel/copy.cpp index 614f0e2a..a5d9226e 100644 --- a/kernel/copy.cpp +++ b/kernel/copy.cpp @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with Sortix. If not, see . - copy.h + copy.cpp The context for io operations: who made it, how should data be copied, etc. *******************************************************************************/ @@ -41,7 +41,6 @@ bool CopyToUser(void* userdst, const void* ksrc, size_t count) bool CopyFromUser(void* kdst, const void* usersrc, size_t count) { - //Log::PrintF("[copy.cpp] Copying %zu bytes from 0x%zx to 0x%zx\n", count, usersrc, kdst); memcpy(kdst, usersrc, count); return true; }