Fix ICC warnings
[alexxy/gromacs.git] / src / gromacs / pbcutil / mshift.cpp
index fa47a80e1a19bf4ee2b77073af9216c325f32d91..e95ccff45d3ce10b1c522a519ffb2f5acd7ea598 100644 (file)
  */
 #include "gmxpre.h"
 
-#include "gromacs/pbcutil/mshift.h"
+#include "mshift.h"
 
 #include <string.h>
 
 #include <algorithm>
 
 #include "gromacs/legacyheaders/types/ifunc.h"
-
 #include "gromacs/math/vec.h"
 #include "gromacs/pbcutil/pbc.h"
 #include "gromacs/utility/fatalerror.h"
@@ -176,7 +175,7 @@ void p_graph(FILE *log, const char *title, t_graph *g)
                     g->nedge[i]);
             for (j = 0; (j < g->nedge[i]); j++)
             {
-                fprintf(log, " %5u", g->edge[i][j]+1);
+                fprintf(log, " %5d", g->edge[i][j]+1);
             }
             fprintf(log, "\n");
         }