]> pilppa.org Git - lib1wire.git/blobdiff - src/W1CounterDevice.cc
Moved files that were not w1 specific to libplp.
[lib1wire.git] / src / W1CounterDevice.cc
index 37a0821903d893074f90f4a0911d48d9d5910d40..c77b872db77786d3da509746e232645f9ad7cbaa 100644 (file)
@@ -28,14 +28,14 @@ bool string_to_number(NumberDataType& result,
        return !(iss >> format >> result).fail();
 }
 
-W1CounterDevice::W1CounterDevice(string device_type_param,
-                               string device_id_param,
-                               dirent *direntry_param): W1Device(device_type_param, device_id_param, direntry_param) {
+W1CounterDevice::W1CounterDevice(string device_id_param,
+               string device_type_param,
+               dirent *direntry_param): W1Device(device_id_param, device_type_param, direntry_param) {
        string text;
 
        ifstream ifs(slave_file.c_str());
        if (ifs.is_open() == false) {
-               log_error("%s: %s failed to read data from file: %s\n", id.c_str(), get_device_type().c_str(), slave_file.c_str());
+               log_error("%s: %s failed to read data from file: %s\n", id.c_str(), get_type().c_str(), slave_file.c_str());
                log_error("Verify that you have w1_ds2423 kernel module loaded.\n");
                ifs.close();
        }