1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

errno tmp fix

This commit is contained in:
Alexander Medvednikov 2019-06-26 17:04:38 +02:00
parent fa925f3092
commit be3dae6b44

View File

@ -374,7 +374,7 @@ fn rmdir(path, guard string) {
*/
fn print_c_errno() {
C.printf('errno=%d err="%s"\n', errno, C.strerror(errno))
//C.printf('errno=%d err="%s"\n', errno, C.strerror(errno))
}