From 9e0846e8a4beebff36c72f03479a7db775b5144e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 7 May 2018 17:59:06 +0200 Subject: all: get rid of underscores in identifiers Underscores are against Go coding style. Update #538 --- vm/vmimpl/console_darwin.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vm/vmimpl/console_darwin.go') diff --git a/vm/vmimpl/console_darwin.go b/vm/vmimpl/console_darwin.go index 15909ae57..1de3380c0 100644 --- a/vm/vmimpl/console_darwin.go +++ b/vm/vmimpl/console_darwin.go @@ -6,8 +6,8 @@ package vmimpl import "syscall" const ( - unix_CBAUD = 0 - unix_CRTSCTS = 0 - syscall_TCGETS = syscall.TIOCGETA - syscall_TCSETS = syscall.TIOCSETA + unixCBAUD = 0 + unixCRTSCTS = 0 + syscallTCGETS = syscall.TIOCGETA + syscallTCSETS = syscall.TIOCSETA ) -- cgit mrf-deployment