From fb6c5406405ce5a426e79d7ce8d1c4cb54098882 Mon Sep 17 00:00:00 2001 From: Michal Vokac Date: Thu, 20 Oct 2011 14:10:38 +0200 Subject: [PATCH] motion: Fix compile error. There was problem with NULL definition, adding the stdio header solved the problem. --- src/motion/arc.cc | 1 + src/motion/turn.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/src/motion/arc.cc b/src/motion/arc.cc index 7943a645..f3b67e6e 100644 --- a/src/motion/arc.cc +++ b/src/motion/arc.cc @@ -19,6 +19,7 @@ #include "trgen.h" #include "trgendbg.h" +#include namespace Segment { diff --git a/src/motion/turn.cc b/src/motion/turn.cc index 7ab3373f..49bc1fe9 100644 --- a/src/motion/turn.cc +++ b/src/motion/turn.cc @@ -18,6 +18,7 @@ #include "trgen.h" #include "trgendbg.h" +#include namespace Segment { -- 2.39.2