diff options
| -rw-r--r-- | .github/workflows/onefiledist.yml | 2 | ||||
| -rw-r--r-- | unix/tclUnixCompat.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/onefiledist.yml b/.github/workflows/onefiledist.yml index 3715555..a60428d 100644 --- a/.github/workflows/onefiledist.yml +++ b/.github/workflows/onefiledist.yml @@ -38,7 +38,7 @@ jobs: path: 1dist/*.tar macos: name: macOS - runs-on: macos-latest + runs-on: macos-11.0 defaults: run: shell: bash diff --git a/unix/tclUnixCompat.c b/unix/tclUnixCompat.c index ef468f6..603285d 100644 --- a/unix/tclUnixCompat.c +++ b/unix/tclUnixCompat.c @@ -1007,6 +1007,9 @@ TclWinCPUID( : "a"(index)); #endif status = TCL_OK; +#else + (void)index; + (void)regsPtr; #endif return status; } |
