diff --git a/src/odb/src/defin/definReader.cpp b/src/odb/src/defin/definReader.cpp index 9cd815504ea..4941b98c0d3 100644 --- a/src/odb/src/defin/definReader.cpp +++ b/src/odb/src/defin/definReader.cpp @@ -1562,7 +1562,11 @@ int definReader::unitsCallback(defrCallbackType_e, double d, defiUserData data) // Truncation error if (d > reader->_tech->getDbUnitsPerMicron()) { - UNSUPPORTED(fmt::format("The DEF UNITS DISTANCE MICRONS convert factor ({}) is greater than the database units per micron ({}) value.", d, reader->_tech->getDbUnitsPerMicron())); + UNSUPPORTED( + fmt::format("The DEF UNITS DISTANCE MICRONS convert factor ({}) is " + "greater than the database units per micron ({}) value.", + d, + reader->_tech->getDbUnitsPerMicron())); } reader->units(d);