mirror of
https://git.freebsd.org/ports.git
synced 2025-05-16 01:01:49 -04:00
fix the build on FreeBSD 12.0 - delete the 'register' keyword everywhere - Add whitespace between adjacent quoted strings - Update the offsetof() macro to cast the result to int Reported by: pkg-fallout
13 lines
260 B
C
13 lines
260 B
C
--- src/sphinxint.h.orig 2018-02-03 10:17:12 UTC
|
|
+++ src/sphinxint.h
|
|
@@ -1074,8 +1074,8 @@ inline int FindBit ( DWORD uValue )
|
|
|
|
inline int sphEncodeVLB8 ( BYTE * buf, uint64_t v )
|
|
{
|
|
- register BYTE b;
|
|
- register int n = 0;
|
|
+ BYTE b;
|
|
+ int n = 0;
|
|
|
|
do
|
|
{
|