| commit | 3d80a1b01b9fa4cc5165a4cf6df143183fbceb6e | [log] [tgz] |
|---|---|---|
| author | Yannis Guyon <yguyon@google.com> | Tue May 20 08:43:05 2025 +0000 |
| committer | GitHub <noreply@github.com> | Tue May 20 10:43:05 2025 +0200 |
| tree | 0a1c781a9f6de8758d4d5339eaf8cacf6435db2e | |
| parent | d54a4c4b38098f556c3e26a0a192836c8c8c49df [diff] |
Fix sato pow comment (#2807)
diff --git a/src/sampletransform.c b/src/sampletransform.c index eaf6da5..9113be6 100644 --- a/src/sampletransform.c +++ b/src/sampletransform.c
@@ -254,7 +254,7 @@ return (rightOperand % 2 == 0) ? 1 : -1; } if (rightOperand < 0) { - // L^R is in ]0:1[ here, so truncating it always gives 0. + // L^R is in ]-1:1[ here, so truncating it always gives 0. return 0; } int64_t result = leftOperand;