Skip to content

Commit

Permalink
Merge pull request #470 from airween/gcc15deb
Browse files Browse the repository at this point in the history
fix: set correct argument of prototypes
  • Loading branch information
airween authored Feb 20, 2025
2 parents 1f422f2 + 0ee226e commit 41161dc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/focm.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,8 @@
#include "tlf_curses.h"
#include "ui_utils.h"
#include "bands.h"
#include "setcontest.h"

bool no_multi() {
return false;
}

struct pos {
int column;
Expand Down
10 changes: 5 additions & 5 deletions src/score.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
#include <stdbool.h>
#include "tlf.h"

int score_wpx();
int score_cqww();
int score_arrlfd();
int score_arrldx_usa();
int score_stewperry();
int score_wpx(struct qso_t *qso);
int score_cqww(struct qso_t *qso);
int score_arrlfd(struct qso_t *qso);
int score_arrldx_usa(struct qso_t *qso);
int score_stewperry(struct qso_t *qso);
int score(struct qso_t *qso);
void score_qso(struct qso_t *qso);
int score2(char *line);
Expand Down
2 changes: 1 addition & 1 deletion src/setcontest.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static struct qso_t *qso_from_spot(spot *data) {

/* No Multiplier mark in bandmap for multis determined from comment field;
* Code works also for modes with no multiplier at all */
static bool no_multi(spot *data) {
bool no_multi(spot *data) {
return false;
}

Expand Down
1 change: 1 addition & 0 deletions src/setcontest.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ bool general_ismulti(spot *data);
contest_config_t *lookup_contest(char *name);
void list_contests();
void setcontest(char *name);
bool no_multi(spot *data);

#endif /* SETCONTEST_H */

0 comments on commit 41161dc

Please sign in to comment.