From 671db5eee0e6dd29b228116146267d8d1441959f Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 20 May 2017 16:56:48 +0100 Subject: [PATCH] 68000: fix time_t split definition With this corrected things like "date" now work properly on M68K --- Kernel/cpu-68000/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/cpu-68000/cpu.h b/Kernel/cpu-68000/cpu.h index 2302b71c..644de6bc 100644 --- a/Kernel/cpu-68000/cpu.h +++ b/Kernel/cpu-68000/cpu.h @@ -38,8 +38,8 @@ extern size_t strlen(const char *); typedef unsigned long clock_t; typedef struct { - uint32_t low; uint32_t high; + uint32_t low; } time_t; typedef union { /* this structure is endian dependent */ -- 2.34.1