diff options
| author | robinson <none@none> | 2005-12-01 15:45:06 -0800 |
|---|---|---|
| committer | robinson <none@none> | 2005-12-01 15:45:06 -0800 |
| commit | f56c1286e5113aa46bd6e723da14d30c123153f2 (patch) | |
| tree | d7067bc8b1cfb340d0d276b97f04e95e93bcd617 /usr/src/common/bignum | |
| parent | 18b1f5baad0aad087d9cc3c1dddadc40a9c2313e (diff) | |
| download | illumos-joyent-f56c1286e5113aa46bd6e723da14d30c123153f2.tar.gz | |
6351554 Kernel build should be more pedantic
Diffstat (limited to 'usr/src/common/bignum')
| -rw-r--r-- | usr/src/common/bignum/bignumimpl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/common/bignum/bignumimpl.c b/usr/src/common/bignum/bignumimpl.c index cf42c030ee..359fc989f8 100644 --- a/usr/src/common/bignum/bignumimpl.c +++ b/usr/src/common/bignum/bignumimpl.c @@ -2439,7 +2439,7 @@ big_nextprime_pos(BIGNUM *result, BIGNUM *n) if ((err = big_copy(result, n)) != BIG_OK) return (err); result->value[0] |= 1; - /* LINTED */ + /* CONSTCOND */ while (1) { for (i = 0; i < SIEVESIZE; i++) sieve[i] = 0; for (i = 0; @@ -2471,7 +2471,7 @@ big_nextprime_pos(BIGNUM *result, BIGNUM *n) return (err); } } - return (BIG_OK); + /* NOTREACHED */ } |
