Fix some updated compiler build errors

pull/314/head
IanSB 2023-03-12 20:18:43 +00:00
rodzic 257ca7b557
commit 555dd36a85
7 zmienionych plików z 9 dodań i 1 usunięć

Wyświetl plik

@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdint.h>
#include "defs.h"
#include "cpld.h"
#include "rgb_to_fb.h"

Wyświetl plik

@ -32,7 +32,9 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <unistd.h>
#include "block.h"
#include "../rpi-systimer.h"

Wyświetl plik

@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include "logging.h"
#include "fatfs/ff.h"
#include "filesystem.h"

Wyświetl plik

@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdint.h>
#include "../filesystem.h"
#include "../logging.h"
#include "../osd.h"

Wyświetl plik

@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdarg.h>
#include <stdint.h>
#include "logging.h"
#include "filesystem.h"

Wyświetl plik

@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <inttypes.h>
#include <ctype.h>
@ -971,7 +972,7 @@ static uint32_t normal_size_map8_16bpp[0x1000 * 4];
static char message[MAX_STRING_SIZE];
// Temporary filename for assembling OSD lines
static char filename[MAX_STRING_SIZE];
static char filename[MAX_STRING_SIZE * 5];
static char selected_manufacturer[MAX_STRING_SIZE];

Wyświetl plik

@ -2,6 +2,7 @@
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <stdint.h>
#include <limits.h>
#include <math.h>
#include "cache.h"