Changeset 1895

Show
Ignore:
Timestamp:
07/22/03 10:44:10 (10 years ago)
Author:
khali
Message:

Use print instead of syswrite.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/prog/eeprom/decode-edid.pl

    r1885 r1895  
    1818# 
    1919# Version 0.1  2003-07-17  Jean Delvare <khali@linux-fr.org> 
     20# Version 0.2  2003-07-22  Jean Delvare <khali@linux-fr.org> 
     21#  Use print instead of syswrite. 
    2022# 
    2123# EEPROM data decoding for EDID. EDID (Extended Display Identification 
     
    109111                } 
    110112                close EEDATA; 
    111                 syswrite PIPE, $output; 
     113                print PIPE $output; 
    112114        } 
    113115 
    114         syswrite PIPE, "\n"; # keep the customer satifsied 
     116        print PIPE "\n"; # keep the customer satifsied 
    115117        close PIPE; 
    116118}