Преглед на файлове

Fixed a typographical mistake

The argument should be the device struct, not an sprog_data struct.
Mateusz Bugdalski преди 13 години
родител
ревизия
070d4a4697
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      sprog.c

+ 1 - 1
sprog.c

@@ -56,7 +56,7 @@ void sprog_process(const struct sprog_family *fam, void *arg, const struct sprog
     fam->exec(arg, d);
   else if(mode==2) {
     fam->write(arg, d);
-    fam->close(d);
+    fam->close(arg);
   }
 }