Revert my revision 6996, which was wrong. Sources need to stay around in the session...
[ardour.git] / libs / ardour / cycle_timer.cc
index 143cb841ecf8f2e8878132a312df3c5de7842811..7a6b1fcab263225fc011aa6335ad94be1c5e9bff 100644 (file)
@@ -18,8 +18,8 @@
 */
 
 #include <cstdio>
-#include <pbd/error.h>
-#include <ardour/cycle_timer.h>
+#include "pbd/error.h"
+#include "ardour/cycle_timer.h"
 
 #include "i18n.h"
 
@@ -31,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*/
@@ -68,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;
 }