Skip to content

Commit 59288b7

Browse files
committed
Pull Request 394 - fix compilation on musl
1 parent c9ffbd7 commit 59288b7

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/decode_aprs.c

+10-4
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,15 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party)
204204
A->g_footprint_lon = G_UNKNOWN;
205205
A->g_footprint_radius = G_UNKNOWN;
206206

207+
// TODO: Complain if obsolete WIDE or RELAY is found in via path.
208+
209+
// TODO: complain if unused WIDEn is see in path.
210+
// There is a report of UIDIGI decrementing ssid 1 to 0 and not marking it used.
211+
// http://lists.tapr.org/pipermail/aprssig_lists.tapr.org/2022-May/049397.html
212+
213+
// TODO: Complain if used digi is found after unused. Should never happen.
214+
215+
207216
// If third-party header, try to decode just the payload.
208217

209218
if (*pinfo == '}') {
@@ -4113,11 +4122,8 @@ static void decode_tocall (decode_aprs_t *A, char *dest)
41134122
* models before getting to the more generic APY.
41144123
*/
41154124

4116-
#if defined(__WIN32__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__)
41174125
qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), tocall_cmp);
4118-
#else
4119-
qsort (tocalls, num_tocalls, sizeof(struct tocalls_s), (__compar_fn_t)tocall_cmp);
4120-
#endif
4126+
41214127
}
41224128
else {
41234129
if ( ! A->g_quiet) {

0 commit comments

Comments
 (0)