You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This warning appears when compiling with a modern Clang compiler:
s_serv.c:337:14: warning: absolute value function 'abs' given an argument of type 'long' but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value]
deltat = abs(theirtime - tmptime);
^
s_serv.c:337:14: note: use function 'labs' instead
deltat = abs(theirtime - tmptime);
^~~
labs
The text was updated successfully, but these errors were encountered:
This warning appears when compiling with a modern Clang compiler:
The text was updated successfully, but these errors were encountered: