Skip to content

Commit

Permalink
Fix one definition rule violations
Browse files Browse the repository at this point in the history
  • Loading branch information
rjonaitis committed Jun 25, 2024
1 parent 2a6a3a4 commit 8d3f787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/phy/rf/rf_lime_imp.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ typedef struct {
pthread_t async_thread;
} rf_lime_handler_t;

cf_t zero_mem[64 * 1024];
static cf_t zero_mem[64 * 1024];

#if HAVE_ASYNC_THREAD
static void log_overflow(rf_lime_handler_t* h)
Expand Down
2 changes: 1 addition & 1 deletion lib/src/phy/rf/rf_soapy_imp.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ typedef struct {
uint32_t num_stream_curruption;
} rf_soapy_handler_t;

cf_t zero_mem[64 * 1024];
static cf_t zero_mem[64 * 1024];

static void log_overflow(rf_soapy_handler_t* h)
{
Expand Down

0 comments on commit 8d3f787

Please sign in to comment.