diff options
| author | Ethan Roseman <ethteck@gmail.com> | 2021-01-09 09:42:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-09 09:42:58 -0500 |
| commit | 6e6ad445a69089b721bea75f6e43b23b14a553b6 (patch) | |
| tree | f8fadd15a0f3d6cf19cfead85a1d81912c047bb8 /ZAPD/ZVector.cpp | |
| parent | 605f6972e14cbb3ddbb5c31545ddbc082e0c0f73 (diff) | |
Fix MacOS build (#68)
Diffstat (limited to 'ZAPD/ZVector.cpp')
| -rw-r--r-- | ZAPD/ZVector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZVector.cpp b/ZAPD/ZVector.cpp index 874f684..c7a6c52 100644 --- a/ZAPD/ZVector.cpp +++ b/ZAPD/ZVector.cpp @@ -80,7 +80,7 @@ std::string ZVector::GetSourceTypeName() } else { - std::string output = StringHelper::Sprintf("Encountered unsupported vector type: %d dimensions, %s type", dimensions, ZScalar::MapScalarTypeToOutputType(scalarType)); + std::string output = StringHelper::Sprintf("Encountered unsupported vector type: %d dimensions, %s type", dimensions, ZScalar::MapScalarTypeToOutputType(scalarType).c_str()); if (Globals::Instance->verbosity >= VERBOSITY_DEBUG) printf("%s\n", output.c_str()); |
