mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-01-12 02:40:04 +00:00
remove extra flag
This commit is contained in:
@@ -129,7 +129,7 @@ class PhysicalMemory(object):
|
||||
|
||||
@staticmethod
|
||||
def _open_dev(name):
|
||||
fd = os.open(name, os.O_SYNC | os.O_RDWR | os.O_LARGEFILE)
|
||||
fd = os.open(name, os.O_SYNC | os.O_RDWR)
|
||||
if fd < 0:
|
||||
raise IOError("Failed to open " + name)
|
||||
return fd
|
||||
|
||||
Reference in New Issue
Block a user