From cfa32c350470c97000e17018d41bda709da71cef Mon Sep 17 00:00:00 2001 From: Kyle Terrien Date: Sat, 25 Jun 2016 22:01:03 -0700 Subject: [PATCH] Fix typo that was blocking compilation on gcc 6 --- linux/acpitemp.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/acpitemp.cc b/linux/acpitemp.cc index 9a53af55..ec39da26 100644 --- a/linux/acpitemp.cc +++ b/linux/acpitemp.cc @@ -118,12 +118,12 @@ void ACPITemp::getacpitemp( void ) { std::ifstream high_file(_highfile); if (!temp_file) { - std::cerr << "Can not open file : " << temp_file << std::endl; + std::cerr << "Can not open file : " << _tempfile << std::endl; parent_->done(1); return; } if (!high_file) { - std::cerr << "Can not open file : " << high_file << std::endl; + std::cerr << "Can not open file : " << _highfile << std::endl; parent_->done(1); return; }