summaryrefslogtreecommitdiffstats
path: root/device.vala
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2012-05-26 04:00:06 +0200
committerSebastian Reichel <sre@ring0.de>2012-05-26 04:00:06 +0200
commitf5b542f6bc85c39d5c1e03fc65449bf6f7b20f0c (patch)
tree5690c54f1bb74d90ebfb4b7213ca02f785dee1d6 /device.vala
parent5913047f8652d095b6f3880b7850ac5bd0bfc1c9 (diff)
downloadserial-barcode-scanner-f5b542f6bc85c39d5c1e03fc65449bf6f7b20f0c.tar.bz2
tcflush is wrong at this position
Diffstat (limited to 'device.vala')
-rw-r--r--device.vala1
1 files changed, 0 insertions, 1 deletions
diff --git a/device.vala b/device.vala
index 203e745..b0f16f3 100644
--- a/device.vala
+++ b/device.vala
@@ -117,7 +117,6 @@ public class Device {
private ssize_t write(void *buf, size_t count) {
ssize_t size = Posix.write(fd, buf, count);
- Posix.tcflush(fd, Posix.TCOFLUSH);
return size;
}