Merge branch 'release-4-5-patches'
[alexxy/gromacs.git] / src / gmxlib / string2.c
index 3784c384e36b1f60f26086ecc12b827949fd0f71..1e91cb89a4735dfdeb8fbbe417b488a62f6896f7 100644 (file)
@@ -397,11 +397,11 @@ gmx_wcmatch(const char *pattern, const char *str)
     return (*str == 0) ? 0 : GMX_NO_WCMATCH;
 }
 
-char *wrap_lines(const char *buf,int line_width, int indent,bool bIndentFirst)
+char *wrap_lines(const char *buf,int line_width, int indent,gmx_bool bIndentFirst)
 {
   char *b2;
   int i,i0,i2,j,b2len,lspace=0,l2space=0;
-  bool bFirst,bFitsOnLine;
+  gmx_bool bFirst,bFitsOnLine;
 
   /* characters are copied from buf to b2 with possible spaces changed
    * into newlines and extra space added for indentation.