RRUZ / tsmbios

Library to access the SMBIOS using Object Pascal (Delphi, FPC).
https://theroadtodelphi.wordpress.com/
202 stars 72 forks source link

Sample source code incorrect property reference (MemoryDeviceInformation) in line 22 #17

Open RayBernard opened 6 years ago

RayBernard commented 6 years ago

Sample source code has an incorrect property reference in line 22, and would not compile

Existing code: for LMemoryDevice in SMBios.MemoryDeviceInformation do

should be: for LMemoryDevice in SMBios.MemoryDeviceInfo do

The sample code compiles and runs just fine with that change.