Browse Source

* inverted move in example, Mantis #21468

git-svn-id: trunk@20517 -
marco 13 năm trước cách đây
mục cha
commit
ad10877886
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/fuse/tests/fusetest.pp

+ 1 - 1
packages/fuse/tests/fusetest.pp

@@ -85,7 +85,7 @@ begin
       if (aFileOffset + aBufferSize > len) then
         aBufferSize := len - aFileOffset;
 
-      move(aBuffer^, (PChar(hello_str) + aFileOffset)^, aBufferSize);
+      move((PChar(hello_str) + aFileOffset)^,ABuffer^, aBufferSize);
     end else
       aBufferSize := 0;