Another round of sonarlint work

This commit is contained in:
Jasmine Iwanek
2023-06-28 13:46:28 -04:00
parent b750471e5c
commit 1116aadb6f
135 changed files with 2425 additions and 1355 deletions

View File

@@ -35,10 +35,11 @@
#include <86box/log.h>
#ifndef RELEASE_BUILD
typedef struct
{
char buff[1024], *dev_name;
int seen, suppr_seen;
typedef struct log_t {
char buff[1024];
char *dev_name;
int seen;
int suppr_seen;
} log_t;
extern FILE *stdlog; /* file to log output to */