Code beautification with uncrustify
[alexxy/gromacs.git] / src / gromacs / utility / errorformat.cpp
index 546145fc1bdeb94de8052e66f35da0d1311efb01..409aa663f68d5ce00e4013dcdfaec11cd690a611 100644 (file)
@@ -99,12 +99,12 @@ void printFatalErrorMessageLine(FILE *fp, const char *text, int indent)
 {
     gmx::TextLineWrapper wrapper;
     wrapper.settings().setLineLength(78 - indent);
-    size_t lineStart = 0;
-    size_t length = std::strlen(text);
+    size_t               lineStart = 0;
+    size_t               length    = std::strlen(text);
     while (lineStart < length)
     {
         size_t nextLineStart = wrapper.findNextLine(text, lineStart);
-        int lineLength = static_cast<int>(nextLineStart - lineStart);
+        int    lineLength    = static_cast<int>(nextLineStart - lineStart);
         while (lineLength > 0 && std::isspace(text[lineStart + lineLength - 1]))
         {
             --lineLength;
@@ -118,11 +118,11 @@ void printFatalErrorFooter(FILE *fp)
 {
     std::fprintf(fp, "\n");
     std::fprintf(fp, "For more information and tips for troubleshooting, please check the GROMACS\n"
-                     "website at http://www.gromacs.org/Documentation/Errors");
+                 "website at http://www.gromacs.org/Documentation/Errors");
     std::fprintf(fp, "\n-------------------------------------------------------\n");
 }
 
-} // namespace internal
+}   // namespace internal
 //! \endcond
 
 } // namespace gmx