Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / trajectory / trajectoryframe.cpp
index 68500a628b39fc64e50e8719643f786f13e138c8..5c752d89d14dc6f12206c3763ee449f71e2fb946 100644 (file)
@@ -136,7 +136,7 @@ TrajectoryFrame::TrajectoryFrame(const t_trxframe &frame)
 
 std::string TrajectoryFrame::frameName() const
 {
-    return formatString("Time %f Step %" GMX_PRId64, frame_.time, frame_.step);
+    return formatString("Time %f Step %" PRId64, frame_.time, frame_.step);
 }
 
 std::int64_t TrajectoryFrame::step() const