Skip to content

Commit

Permalink
slaudio: fix uint64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Jun 8, 2021
1 parent cd8ca46 commit 01549e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/modules/slaudio/slaudio.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ char error_msg[512] = {0};
static int16_t startup_count = 0;

static struct sl_debug {
u_int64_t out_ur;
u_int64_t out_or;
u_int64_t in_ur;
u_int64_t in_or;
u_int64_t ring_ur;
u_int64_t ring_or;
uint64_t out_ur;
uint64_t out_or;
uint64_t in_ur;
uint64_t in_or;
uint64_t ring_ur;
uint64_t ring_or;
bool changed;
} sl_debug = {0, 0, 0, 0, 0, 0, false};

Expand Down

0 comments on commit 01549e2

Please sign in to comment.