From 793372d7d424ee3391386413810da2276c849ad6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 24 Jul 2009 01:30:50 +0000 Subject: [PATCH] fixes for 64 bit compilation - see comment git-svn-id: svn://localhost/ardour2/branches/3.0@5422 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/interpolation.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ardour/interpolation.cc b/libs/ardour/interpolation.cc index 244ababb51..ed27d05d2a 100644 --- a/libs/ardour/interpolation.cc +++ b/libs/ardour/interpolation.cc @@ -164,7 +164,8 @@ SplineInterpolation::interpolate (int channel, nframes_t nframes, Sample *input, // How many input samples we need nframes_t n = ceil (double(nframes) * _speed + phase[channel]); - printf("======== n: %u nframes: %u input: %u, output: %u\n", n, nframes, uint32_t(input), uint32_t(output)); + // hans - we run on 64bit systems too .... no casting pointer to a sized integer, please + printf("======== n: %u nframes: %u input: %p, output: %p\n", n, nframes, input, output); if (n <= 3) { return 0;