From 93c00d68f7ff405334a6e372bedfcbba01d47f35 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Sat, 29 Jul 2017 12:13:08 +0200 Subject: [PATCH] Fix include files --- control/auxiliary.c | 2 +- control/config.h.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/control/auxiliary.c b/control/auxiliary.c index b00ed6efe..00c6bdc59 100644 --- a/control/auxiliary.c +++ b/control/auxiliary.c @@ -266,7 +266,7 @@ void update_progress(int currentValue, int maximumValue) { void (*update_progress_callback)(int, int) = update_progress; int MORSE_Set_update_progress_callback(void (*p)(int, int)) { - update_progress_callback=p ; + update_progress_callback = p; return MORSE_SUCCESS; } diff --git a/control/config.h.in b/control/config.h.in index 1194dc083..d15817505 100644 --- a/control/config.h.in +++ b/control/config.h.in @@ -26,7 +26,7 @@ #define CONFIG_H_HAS_BEEN_INCLUDED /* inherit from public chameleon's definitions */ -#include "include/chameleon_config.h" +#include "chameleon/chameleon_config.h" /* StarPU functions */ #cmakedefine HAVE_STARPU_FXT_PROFILING -- GitLab