authorgravatar for euantorano@users.noreply.github.comEuan T <euantorano@users.noreply.github.com> 2019-08-03 07:51:36+01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2019-08-03 07:51:36+01:00
log08251fbc544aa03c77d4c311e267689592432282
tree695b9fc88bbdd64c655109fd141afe11d13cf7b7
parent8e157ccb23885b2a9a8a5d66c3955fc560fd0074
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Omit system namespace.

Co-Authored-By: Andrew Kelley <andrew@ziglang.org>

1 files changed, 1 insertions(+), 1 deletions(-)

std/os.zig+1-1
...@@ -134,7 +134,7 @@ fn getRandomBytesDevURandom(buf: []u8) !void {...@@ -134,7 +134,7 @@ fn getRandomBytesDevURandom(buf: []u8) !void {
134 defer close(fd);134 defer close(fd);
135135
136 const st = try fstat(fd);136 const st = try fstat(fd);
137 if (!system.S_ISCHR(st.mode)) {137 if (!S_ISCHR(st.mode)) {
138 return error.NoDevice;138 return error.NoDevice;
139 }139 }
140140