We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70613f0 commit a3196f2Copy full SHA for a3196f2
src/wasi_defs.ts
@@ -286,9 +286,9 @@ export class Filestat {
286
view.setUint8(ptr + 16, this.filetype);
287
view.setBigUint64(ptr + 24, this.nlink, true);
288
view.setBigUint64(ptr + 32, this.size, true);
289
- view.setBigUint64(ptr + 38, this.atim, true);
290
- view.setBigUint64(ptr + 46, this.mtim, true);
291
- view.setBigUint64(ptr + 52, this.ctim, true);
+ view.setBigUint64(ptr + 40, this.atim, true);
+ view.setBigUint64(ptr + 48, this.mtim, true);
+ view.setBigUint64(ptr + 56, this.ctim, true);
292
}
293
294
0 commit comments