diff options
author | Tobias Klauser <tobias.klauser@uzh.ch> | 2013-02-12 15:33:51 +0100 |
---|---|---|
committer | Tobias Klauser <tobias.klauser@uzh.ch> | 2013-02-12 15:33:51 +0100 |
commit | 88b269a55985f47799eb99fa3bdb8f95bc360bb0 (patch) | |
tree | 674efc8f31352f8b914c2e82d336294195b4a20c | |
parent | cadc5e0f8c244f4bad723e054dc58007b7f92eea (diff) |
LocomotorPrimitives: Fix typo in log error message
-rw-r--r-- | LocomotorPrimitives.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LocomotorPrimitives.cpp b/LocomotorPrimitives.cpp index de031f2..cf6ed91 100644 --- a/LocomotorPrimitives.cpp +++ b/LocomotorPrimitives.cpp @@ -95,7 +95,7 @@ void simulateModel(OpenSim::Model &model, const double initial_time, std::string cwd = OpenSim::IO::getCwd(); if (OpenSim::IO::chDir(output_dir) != 0) { - logger.err("Failed to change to ouput directory %s", output_dir.c_str()); + logger.err("Failed to change to output directory %s", output_dir.c_str()); return; } |