Revert my revision 6996, which was wrong. Sources need to stay around in the session...
[ardour.git] / libs / ardour / cycle_timer.cc
index 3031d5a7ec93c624a481a277496a927edb26c7eb..7a6b1fcab263225fc011aa6335ad94be1c5e9bff 100644 (file)
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #include <cstdio>
-#include <pbd/error.h>
-#include <ardour/cycle_timer.h>
+#include "pbd/error.h"
+#include "ardour/cycle_timer.h"
 
 #include "i18n.h"
 
@@ -32,7 +31,7 @@ float
 CycleTimer::get_mhz()
 {
        FILE *f;
-       
+
        if ((f = fopen("/proc/cpuinfo", "r")) == 0) {
                fatal << _("CycleTimer::get_mhz(): can't open /proc/cpuinfo") << endmsg;
                /*NOTREACHED*/
@@ -69,7 +68,7 @@ CycleTimer::get_mhz()
                }
        }
 
-       fatal << _("cannot locate cpu MHz in /proc/cpuinfo") << endmsg; 
+       fatal << _("cannot locate cpu MHz in /proc/cpuinfo") << endmsg;
        /*NOTREACHED*/
        return 0.0f;
 }