diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2026-04-24 14:48:10 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2026-04-24 14:48:10 -0400 |
| commit | 3d52f9d78bb8be0246b720f89457c90eb5fa3b06 (patch) | |
| tree | 74b0a201c22202ee9fedf553577ddb590e9b338d | |
| parent | 0706848f76740d39bb48c68d7756e1d9a58e00a2 (diff) | |
remove orp func inline; compilation errors
| -rwxr-xr-x | src/spreed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spreed.c b/src/spreed.c index 711de40..cd9d24a 100755 --- a/src/spreed.c +++ b/src/spreed.c @@ -25,7 +25,7 @@ exit const uint8_t orps[9] = {0,0,0,1,1,2,2,2,2}; -inline uint8_t get_optimal_recognition_point(size_t len) { +uint8_t get_optimal_recognition_point(size_t len) { if (len >= 10) return 3; return orps[len-1]; } |
