diff options
Diffstat (limited to 'src/ColorContext.cpp')
-rw-r--r-- | src/ColorContext.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ColorContext.cpp b/src/ColorContext.cpp index ac797518..9706cb81 100644 --- a/src/ColorContext.cpp +++ b/src/ColorContext.cpp @@ -14,10 +14,11 @@ along with Ingen. If not, see <http://www.gnu.org/licenses/>. */ -#include "ingen/ColorContext.hpp" +#include <ingen/ColorContext.hpp> + #include "ingen_config.h" -#ifdef HAVE_ISATTY +#if USE_ISATTY # include <unistd.h> #else inline int isatty(int fd) { return 0; } @@ -41,4 +42,4 @@ ColorContext::~ColorContext() } } -} // namespace ingen +} // namespace ingen |