@@ -1967,6 +1967,7 @@ static void aprs_status_report (decode_aprs_t *A, char *info, int ilen)
1967
1967
/*
1968
1968
* Do we have format with 6 character Maidenhead locator?
1969
1969
*/
1970
+
1970
1971
else if (get_maidenhead (A , pm6 -> mhead6 ) == 6 ) {
1971
1972
1972
1973
memset (A -> g_maidenhead , 0 , sizeof (A -> g_maidenhead ));
@@ -3788,11 +3789,12 @@ static struct tocalls_s {
3788
3789
static int num_tocalls = 0 ;
3789
3790
3790
3791
// Make sure the array is null terminated.
3791
- // If search order is changed, do the same in symbols.c
3792
+ // If search order is changed, do the same in symbols.c for consistency.
3792
3793
3793
3794
static const char * search_locations [] = {
3794
- (const char * ) "tocalls.txt" ,
3795
- (const char * ) "../data/tocalls.txt" ,
3795
+ (const char * ) "tocalls.txt" , // CWD
3796
+ (const char * ) "data/tocalls.txt" , // Windows with CMake
3797
+ (const char * ) "../data/tocalls.txt" , // ?
3796
3798
#ifndef __WIN32__
3797
3799
(const char * ) "/usr/local/share/direwolf/tocalls.txt" ,
3798
3800
(const char * ) "/usr/share/direwolf/tocalls.txt" ,
@@ -3804,7 +3806,7 @@ static const char *search_locations[] = {
3804
3806
// path as well.
3805
3807
(const char * ) "/opt/local/share/direwolf/tocalls.txt" ,
3806
3808
#endif
3807
- (const char * ) NULL
3809
+ (const char * ) NULL // Important - Indicates end of list.
3808
3810
};
3809
3811
3810
3812
static int tocall_cmp (const void * px , const void * py )
0 commit comments