diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-05-07 17:59:06 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-05-07 17:59:06 +0200 |
| commit | 9e0846e8a4beebff36c72f03479a7db775b5144e (patch) | |
| tree | 5be248f1b661837ea2378648676e3f0f8d5746c6 /vm/vmimpl/console_linux_arm64.go | |
| parent | 99c1f486598445575a3a624bf70dc6a31f60d365 (diff) | |
all: get rid of underscores in identifiers
Underscores are against Go coding style.
Update #538
Diffstat (limited to 'vm/vmimpl/console_linux_arm64.go')
| -rw-r--r-- | vm/vmimpl/console_linux_arm64.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/vmimpl/console_linux_arm64.go b/vm/vmimpl/console_linux_arm64.go index f10edf002..35944a761 100644 --- a/vm/vmimpl/console_linux_arm64.go +++ b/vm/vmimpl/console_linux_arm64.go @@ -9,8 +9,8 @@ import ( // This compiles, but wan't tested. const ( - unix_CBAUD = unix.CBAUD - unix_CRTSCTS = unix.CRTSCTS - syscall_TCGETS = unix.TCGETS2 - syscall_TCSETS = unix.TCSETS2 + unixCBAUD = unix.CBAUD + unixCRTSCTS = unix.CRTSCTS + syscallTCGETS = unix.TCGETS2 + syscallTCSETS = unix.TCSETS2 ) |
