]> Git Repo - qemu.git/blobdiff - linux-user/uaccess.c
avoid TABs in files that only contain a few
[qemu.git] / linux-user / uaccess.c
index 0a5c0b0b29727995acdf8a984277c6f97d303af4..e215ecc2a60b29bd506f524e17c035fd96d4f523 100644 (file)
@@ -30,7 +30,7 @@ abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len)
 
     if ((ghptr = lock_user(VERIFY_WRITE, gaddr, len, 0))) {
         memcpy(ghptr, hptr, len);
-       unlock_user(ghptr, gaddr, len);
+        unlock_user(ghptr, gaddr, len);
     } else
         ret = -TARGET_EFAULT;
 
This page took 0.021809 seconds and 4 git commands to generate.