Skip to content

Commit

Permalink
Avoid exposing range_high/low to the world
Browse files Browse the repository at this point in the history
That could conflict
  • Loading branch information
sthibaul committed Oct 4, 2023
1 parent 23ad026 commit 6782595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/c/libspeechd.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ static int ret_ok(char *reply);
static void SPD_DBG(char *format, ...);
static void *spd_events_handler(void *);

const int range_low = -100;
const int range_high = 100;
static const int range_low = -100;
static const int range_high = 100;

pthread_mutex_t spd_logging_mutex = PTHREAD_MUTEX_INITIALIZER;

Expand Down

0 comments on commit 6782595

Please sign in to comment.