diff --git a/sm5/CHANGELOG b/sm5/CHANGELOG index cb53711894fc8811f9e882aec37b822ca529a033..56542a5912edfc689677b0f035d18b4fe6a7a6e2 100644 --- a/sm5/CHANGELOG +++ b/sm5/CHANGELOG @@ -1,6 +1,6 @@ CHANGELOG for smartmontools -$Id: CHANGELOG,v 1.747 2008/10/24 21:43:12 manfred99 Exp $ +$Id: CHANGELOG,v 1.748 2008/10/24 21:49:23 manfred99 Exp $ The most recent version of this file is: http://smartmontools.cvs.sourceforge.net/smartmontools/sm5/CHANGELOG?view=markup @@ -40,6 +40,8 @@ NOTES FOR FUTURE RELEASES: see TODO file. <DEVELOPERS: ADDITIONS TO THE CHANGE LOG GO JUST BELOW HERE, PLEASE> + [MS] Fix trivial compile error with "-pedantic" + [MS] Workaround for huge raw values of Reallocated_Sector_Ct and Reallocated_Event_Ct for newer Fujitsu disks (only the lower 16 bits seem to be meaningful). Clip the display to 16 bits diff --git a/sm5/dev_ata_cmd_set.cpp b/sm5/dev_ata_cmd_set.cpp index aa0b4f8fee2b83328498aa08ded49ee326a39f49..41c6234d015381c9887762d8d86d577eb3a96350 100644 --- a/sm5/dev_ata_cmd_set.cpp +++ b/sm5/dev_ata_cmd_set.cpp @@ -22,7 +22,7 @@ #include <errno.h> -const char * dev_ata_cmd_set_cpp_cvsid = "$Id: dev_ata_cmd_set.cpp,v 1.3 2008/08/23 17:07:16 chrfranke Exp $" +const char * dev_ata_cmd_set_cpp_cvsid = "$Id: dev_ata_cmd_set.cpp,v 1.4 2008/10/24 21:49:23 manfred99 Exp $" DEV_ATA_CMD_SET_H_CVSID; @@ -122,5 +122,5 @@ bool ata_device_with_command_set::ata_pass_through(const ata_cmd_in & in, ata_cm break; } return true; -}; +}