]> git.ipfire.org Git - thirdparty/wireguard-go.git/commitdiff
Unify certain variable names
authorSimon Rozman <simon@rozman.si>
Mon, 4 Feb 2019 10:42:51 +0000 (11:42 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 5 Feb 2019 11:59:42 +0000 (12:59 +0100)
Signed-off-by: Simon Rozman <simon@rozman.si>
setupapi/setupapi_windows.go
setupapi/setupapi_windows_test.go

index 95c5ba6e33aec1e22b08a07d87d8f6f8667490c5..f6b35d2266deb2e721f988d8d82d5b369dc1a7f1 100644 (file)
@@ -104,7 +104,7 @@ func SetupDiGetClassDevsEx(ClassGUID *windows.GUID, Enumerator string, hwndParen
 }
 
 // SetupDiGetDeviceInfoListDetail function retrieves information associated with a device information set including the class GUID, remote computer handle, and remote computer name.
-func SetupDiGetDeviceInfoListDetail(DeviceInfoSet DevInfo) (data *DevInfoListDetailData, err error) {
+func SetupDiGetDeviceInfoListDetail(DeviceInfoSet DevInfo) (DeviceInfoSetDetailData *DevInfoListDetailData, err error) {
        var _data _SP_DEVINFO_LIST_DETAIL_DATA
        _data.Size = uint32(unsafe.Sizeof(_data))
 
@@ -113,12 +113,11 @@ func SetupDiGetDeviceInfoListDetail(DeviceInfoSet DevInfo) (data *DevInfoListDet
                return
        }
 
-       data = &DevInfoListDetailData{
+       return &DevInfoListDetailData{
                ClassGUID:           _data.ClassGUID,
                RemoteMachineHandle: _data.RemoteMachineHandle,
                RemoteMachineName:   windows.UTF16ToString(_data.RemoteMachineName[:]),
-       }
-       return
+       }, nil
 }
 
 // SetupDiEnumDeviceInfo function returns a SP_DEVINFO_DATA structure that specifies a device information element in a device information set.
@@ -136,7 +135,7 @@ func SetupDiOpenDevRegKey(DeviceInfoSet DevInfo, DeviceInfoData *SP_DEVINFO_DATA
 }
 
 // SetupDiGetDeviceInstallParams function retrieves device installation parameters for a device information set or a particular device information element.
-func SetupDiGetDeviceInstallParams(DeviceInfoSet DevInfo, DeviceInfoData *SP_DEVINFO_DATA) (data *DevInstallParams, err error) {
+func SetupDiGetDeviceInstallParams(DeviceInfoSet DevInfo, DeviceInfoData *SP_DEVINFO_DATA) (DeviceInstallParams *DevInstallParams, err error) {
        var _data _SP_DEVINSTALL_PARAMS
        _data.Size = uint32(unsafe.Sizeof(_data))
 
@@ -145,7 +144,7 @@ func SetupDiGetDeviceInstallParams(DeviceInfoSet DevInfo, DeviceInfoData *SP_DEV
                return
        }
 
-       data = &DevInstallParams{
+       return &DevInstallParams{
                Flags:                    _data.Flags,
                FlagsEx:                  _data.FlagsEx,
                hwndParent:               _data.hwndParent,
@@ -153,8 +152,7 @@ func SetupDiGetDeviceInstallParams(DeviceInfoSet DevInfo, DeviceInfoData *SP_DEV
                InstallMsgHandlerContext: _data.InstallMsgHandlerContext,
                FileQueue:                _data.FileQueue,
                DriverPath:               windows.UTF16ToString(_data.DriverPath[:]),
-       }
-       return
+       }, nil
 }
 
 // SetupDiSetDeviceInstallParams function sets device installation parameters for a device information set or a particular device information element.
index 76257ac72c19d813334210411524a8602aa716d5..062b6bd3e9874e3c9269b111b76369edc77a6c80 100644 (file)
@@ -21,17 +21,17 @@ func init() {
 }
 
 func TestSetupDiClassNameFromGuidEx(t *testing.T) {
-       className, err := SetupDiClassNameFromGuidEx(&deviceClassNetGUID, "")
+       deviceClassNetName, err := SetupDiClassNameFromGuidEx(&deviceClassNetGUID, "")
        if err != nil {
                t.Errorf("Error calling SetupDiClassNameFromGuidEx: %s", err.Error())
-       } else if strings.ToLower(className) != "net" {
+       } else if strings.ToLower(deviceClassNetName) != "net" {
                t.Errorf("SetupDiClassNameFromGuidEx(%x) should return \"Net\"", deviceClassNetGUID)
        }
 
-       className, err = SetupDiClassNameFromGuidEx(&deviceClassNetGUID, computerName)
+       deviceClassNetName, err = SetupDiClassNameFromGuidEx(&deviceClassNetGUID, computerName)
        if err != nil {
                t.Errorf("Error calling SetupDiClassNameFromGuidEx: %s", err.Error())
-       } else if strings.ToLower(className) != "net" {
+       } else if strings.ToLower(deviceClassNetName) != "net" {
                t.Errorf("SetupDiClassNameFromGuidEx(%x) should return \"Net\"", deviceClassNetGUID)
        }