fix typo in c212c16eb
[ardour.git] / libs / ardour / jack_slave.cc
index 9ef6eb8579ed21897a0ad7822846cd2c12e8e02a..4c2da4c6c45287a7a57aea78dde464ed28ab641d 100644 (file)
@@ -24,9 +24,6 @@
 #include <jack/transport.h>
 
 #include "ardour/slave.h"
-#include "ardour/session.h"
-
-#include "i18n.h"
 
 using namespace std;
 using namespace ARDOUR;
@@ -35,7 +32,7 @@ JACK_Slave::JACK_Slave (jack_client_t* j)
        : jack (j)
 {
        double x;
-       nframes64_t p;
+       framepos_t p;
        /* call this to initialize things */
        speed_and_position (x, p);
 }
@@ -63,7 +60,7 @@ JACK_Slave::ok() const
 }
 
 bool
-JACK_Slave::speed_and_position (double& sp, nframes64_t& position)
+JACK_Slave::speed_and_position (double& sp, framepos_t& position)
 {
        jack_position_t pos;
        jack_transport_state_t state;