commit 227fbf464035219aec1fe5cabdacc34480827074
parent e29a40ee96ecf82bf516f9c17ba294e4e029e0f1
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 23 Jan 2024 11:26:34 +0100
Correction of a compilation error
A local header was included using angle brackets, meaning that it should
be considered an external header. Depending on the compilation options,
this can lead to a compilation error, which is corrected here by using
double quotes, i.e. the header is local.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/stardis-program.h b/src/stardis-program.h
@@ -17,8 +17,7 @@
#define STARDIS_PROGRAM_H
#include "stardis-app.h"
-
-#include <stardis-prog-properties.h>
+#include "stardis-prog-properties.h"
#include <rsys/rsys.h>
#include <rsys/str.h>