diff options
Diffstat (limited to 'src/control.cc')
-rw-r--r-- | src/control.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/control.cc b/src/control.cc index c50402f..10aadf0 100644 --- a/src/control.cc +++ b/src/control.cc @@ -184,7 +184,8 @@ AbstractNode *ControlModule::instantiate(const Context* /*ctx*/, const ModuleIns else { // How to deal with negative objects in this case? // (e.g. first child of difference is invalid) - PRINTB("WARNING: Child index (%d) out of bounds (%d children)", n % modulectx->numChildren()); + PRINTB("WARNING: Child index (%d) out of bounds (%d children)", + n % modulectx->numChildren()); } return node; } |