mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Update kernel/copy.cpp to current coding conventions.
This commit is contained in:
parent
cf352a64a7
commit
292cca5f0e
1 changed files with 1 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU General Public License along with
|
||||
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue