trivial: Fix broken commit

I didn't actually mean to push this, but as I did, lets make it at least compile...
This commit is contained in:
Richard Hughes 2020-02-07 12:04:03 +00:00
parent d89bf61c0e
commit 072efbde88

View File

@ -120,7 +120,7 @@ fu_solokey_device_open (FuUsbDevice *device, GError **error)
fu_device_set_version_bootloader (FU_DEVICE (device), split[2]);
fu_device_add_flag (FU_DEVICE (device), FWUPD_DEVICE_FLAG_IS_BOOTLOADER);
fu_device_remove_flag (FU_DEVICE (device), FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER);
} else if (g_strcmp0 (split[1], "Keys") == 0 && split[2], "Solo") == 0) {
} else if (g_strcmp0 (split[1], "Keys") == 0 && g_strcmp0 (split[2], "Solo") == 0) {
fu_device_add_flag (FU_DEVICE (device), FWUPD_DEVICE_FLAG_IS_BOOTLOADER);
fu_device_remove_flag (FU_DEVICE (device), FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER);
} else {