Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: Fix simple typo, fnctl -> fcntl
There is a small typo in dist/sql-asm-debug.js, dist/sql-wasm-debug.js, dist/worker.sql-asm-debug.js, dist/worker.sql-wasm-debug.js.

Should read `fcntl` rather than `fnctl`.
  • Loading branch information
timgates42 committed May 17, 2020
commit 9b4e26c89aab1d1ed493e652c0f39a0516cf6d6b
2 changes: 1 addition & 1 deletion dist/sql-asm-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -5727,7 +5727,7 @@ function copyTempDouble(ptr) {
case 8:
return -ERRNO_CODES.EINVAL; // These are for sockets. We don't have them fully implemented yet.
case 9:
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fnctl() returns that, and we set errno ourselves.
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fcntl() returns that, and we set errno ourselves.
___setErrNo(ERRNO_CODES.EINVAL);
return -1;
default: {
Expand Down
2 changes: 1 addition & 1 deletion dist/sql-wasm-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -5891,7 +5891,7 @@ function copyTempDouble(ptr) {
case 8:
return -ERRNO_CODES.EINVAL; // These are for sockets. We don't have them fully implemented yet.
case 9:
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fnctl() returns that, and we set errno ourselves.
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fcntl() returns that, and we set errno ourselves.
___setErrNo(ERRNO_CODES.EINVAL);
return -1;
default: {
Expand Down
2 changes: 1 addition & 1 deletion dist/worker.sql-asm-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -5695,7 +5695,7 @@ function copyTempDouble(ptr) {
case 8:
return -ERRNO_CODES.EINVAL; // These are for sockets. We don't have them fully implemented yet.
case 9:
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fnctl() returns that, and we set errno ourselves.
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fcntl() returns that, and we set errno ourselves.
___setErrNo(ERRNO_CODES.EINVAL);
return -1;
default: {
Expand Down
2 changes: 1 addition & 1 deletion dist/worker.sql-wasm-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -5891,7 +5891,7 @@ function copyTempDouble(ptr) {
case 8:
return -ERRNO_CODES.EINVAL; // These are for sockets. We don't have them fully implemented yet.
case 9:
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fnctl() returns that, and we set errno ourselves.
// musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fcntl() returns that, and we set errno ourselves.
___setErrNo(ERRNO_CODES.EINVAL);
return -1;
default: {
Expand Down