Skip to content

Commit c4d9472

Browse files
authored
Merge pull request #156 from ballle98/dev/deb_11_bullseye_build_fail
ballle98#57: Unable to make on new Pi Zero
2 parents e360cba + c5a41f0 commit c4d9472

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

onetouch.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
//#include "pda_menu.h"
3636

3737

38-
int _ot_hlightindex = -1;
39-
int _ot_hlightcharindexstart = -1;
40-
int _ot_hlightcharindexstop = -1;
41-
char _menu[ONETOUCH_LINES][AQ_MSGLEN+1];
42-
struct ot_macro _macros[3];
38+
static int _ot_hlightindex = -1;
39+
static int _ot_hlightcharindexstart = -1;
40+
static int _ot_hlightcharindexstop = -1;
41+
static char _menu[ONETOUCH_LINES][AQ_MSGLEN+1];
42+
static struct ot_macro _macros[3];
4343

4444
void set_macro_status();
4545
void pump_update(struct aqualinkdata *aq_data, int updated);

pda_menu.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
#include "aq_serial.h"
2626
#include "utils.h"
2727

28-
int _hlightindex = -1;
29-
char _menu[PDA_LINES][AQ_MSGLEN+1];
28+
static int _hlightindex = -1;
29+
static char _menu[PDA_LINES][AQ_MSGLEN+1];
3030

3131
void print_menu()
3232
{

0 commit comments

Comments
 (0)