Browse Source

tosunits: fix a bug in vq_extnd

Thorsten Otto 3 years ago
parent
commit
13ed9a2277
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/tosunits/src/vdi.pas

+ 2 - 2
packages/tosunits/src/vdi.pas

@@ -2167,9 +2167,9 @@ begin
   pb.intin := @_intin;
   pb.ptsin := @_ptsin;
   // work_out[0..44] = intout[0..44];
-  pb.intout := @workout;
+  pb.intout := PVDIIntOut(workout);
   // work_out[45..56] = ptsout[0..11];
-  pb.ptsout := @workout[45];
+  pb.ptsout := PVDIPtsOut(@workout[45]);
 
   _intin[0]:=owflag;