Browse Source

Fix single & instead of && in logical test in eepromer (Fedora patch).

git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@4583 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v3.0.0
Jean Delvare 18 years ago
parent
commit
1932485923
  1. 2
      eepromer/eeprom.c

2
eepromer/eeprom.c

@ -216,7 +216,7 @@ int main(int argc, char **argv){
/***
*** I'm not the one to blame of you screw your computer!
***/
if(rwmode & ! force){
if(rwmode && ! force){
unsigned char warnbuf[4];
fprintf(stderr,"**WARNING**\n");
fprintf(stderr," - \tYou have chosen to WRITE to this eeprom.\n");

Loading…
Cancel
Save