mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-07-16 08:37:09 +00:00
remove extra flag
This commit is contained in:
@@ -129,7 +129,7 @@ class PhysicalMemory(object):
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _open_dev(name):
|
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:
|
if fd < 0:
|
||||||
raise IOError("Failed to open " + name)
|
raise IOError("Failed to open " + name)
|
||||||
return fd
|
return fd
|
||||||
|
|||||||
Reference in New Issue
Block a user