From 50389fc297d2af3383224a9e307d175587472c07 Mon Sep 17 00:00:00 2001
From: Antoine Fontaine <antoine.fontaine@epfl.ch>
Date: Sat, 3 Aug 2019 15:53:43 +0200
Subject: [PATCH] Make `struct Courses` sightly more consistent with rest of
 the file

---
 src/data-struct.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/data-struct.h b/src/data-struct.h
index 983e436..c5cf4eb 100644
--- a/src/data-struct.h
+++ b/src/data-struct.h
@@ -32,8 +32,8 @@ enum resource_type {
 };
 
 struct Courses {
-  struct Course *courses;
   size_t course_count;
+  struct Course *courses;
 };
 
 struct Course {
-- 
GitLab